前端之家收集整理的这篇文章主要介绍了
正则表达式 – 从MSBuild中的字符串中提取数字,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从MSBuild中的字符串中
提取数字.
如何使用内置任务或MSBuild.Community.Tasks? (RegexMatch可能会做,但是怎么样?)
示例:我有字符串
agent0076
我想排除数字,没有前导零:
76
使用MSBuild 4
属性函数
<Target Name="Regex">
<PropertyGroup>
<In>agent0076</In>
<Out>$([System.Text.RegularExpressions.Regex]::Match($(In),`[1-9]\d*`))</Out>
</PropertyGroup>
<Message Text="Input : $(In) Output : $(Out)"/>
<!-- Input : agent0076 Output : 76 -->
</Target>
原文链接:https://www.f2er.com/regex/357048.html