RegEx isMatch issue

Hi, i’m facing this problem. I have two string equals but the isMatch gives as output a false. The strings are cut/copied from two different programs but the words are the same.
Sequence1.xaml (5.2 KB)
Thank you in advance

@leonardo961900

Try below expression IF activity.

     String1.ToLower.Trim.Equals(String2.ToLower.Trim)

If both strings are matching then it will go Then side else Else side.

Hi,

Both strings are different. that’s why is match is throwing false. try with different regex options.

i have just pasted in notepad i could see some difference. thanks.

Hi,

As @kirankumar.mahanthi1 mentioned both are different string.
To be more precise, 1st character of 2nd argument is not f but U+FB02 (it’s fl as single character) So both string length is not same, too.

Regards,

1 Like