ID number validation on workfusion

47 views Asked by At

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?

1

There are 1 answers

0
Andrey On

Since you can use Java in WorkFusion, easiest is to use a regular expression. E.g. to validate 13 digit string:

if (idString.matches("[0-9]{13}")) {
     ....
}