0

I'm working on workfusion and my process is extracting 13 digit ID number from email subject line, how do I ensure the validity of the ID number i receive from the email?

4

1 回答 1

0

由于您可以在 WorkFusion 中使用 Java,因此最简单的方法是使用正则表达式。例如验证 13 位字符串:

if (idString.matches("[0-9]{13}")) {
     ....
}
于 2020-12-11T19:17:01.073 回答