Regex String Error Multi

Hello,

I have 20 “regex” expressions. If there is no 1st value, the 2nd is passed. If there is no value, the 3rd passes.

How do I do this?

how to write multiple regex

@d.ulutas Alternative method is you can use in assign activity by using | symbol

Assign str_Data = System.Text.RegularExpressions.Regex.Match(str_Data ,“([A-Z\d]+)|(?<=Siparis\sNo:\s.*?)\d+”).ToString.Trim

Hello @d.ulutas You can take OR condition after every expression, Shift+|

Ex: Sipsda No: ([A-z\d]+)|

1 Like

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