UIpath 中如何使用 正则表达式
UIpath中是通过系统调用正则表达式的
先定义 字符串
getstr="a8bcde9188hello world"
通过正则获取数字,长度2到10之间
System.Text.RegularExpressions.Regex.Matches(getstr,"\d{2,10}")
注意 返回的是集合,如果直接打印,会提示 System Text Regular Expressions Match Collection
所以需要通过循环来获取匹配到的值
item 才是你想要的值
以上是使用UIpath中遇到的坑
若有不对的地方,请指出,谢谢
星辰大海