Regex matching

Hi,
I tried using Regex in sequence but ended up with error “RegexOptions not declared”. Can anyone please tell me where i’m going wrong.

Hi @KeertiJ,
Can you please give us more details? Show the phrase on which you want to do regex. Example of your workflow and settings would be also nice :wink:

Hi @Pablito
I want to match a number “4778129-00” from a text file. The length of this number remains the same i.e 7 digits following with “-00”.

1 Like

\d{7}-\d{2} => this would match both 1234567-56, 1234567-00
\d{7}-0{2} => this would match only 1234567-00 and not 1234567-56

hope this would help

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.