使用 Blueprism 提取正则表达式
Extract Regex Using Blueprism
我想使用 Blueprism 从字符串中提取一个 10 位数字。我在 Utility Strings 对象中使用 Extract Regex Values 操作。这个动作我用过,效果不错。
正则表达式
\d{10}
字符串
104|I-A-P-D-02112021.txt|11022021|1234|1IE-AV-P-1122334400v1||
看来 \d
在您的环境中不起作用。
A [0-9]
更通用,所以您可以使用
[0-9]{10}
我想使用 Blueprism 从字符串中提取一个 10 位数字。我在 Utility Strings 对象中使用 Extract Regex Values 操作。这个动作我用过,效果不错。
正则表达式
\d{10}
字符串
104|I-A-P-D-02112021.txt|11022021|1234|1IE-AV-P-1122334400v1||
看来 \d
在您的环境中不起作用。
A [0-9]
更通用,所以您可以使用
[0-9]{10}