Distinct Emails

ABC@test.com

abc@test.com

In my workflow I am trying to identify distinct emails but for some The above both emails are getting considered which is breaking the clause of distinct emails i want to only showcase the second email and not the first One.

Like if both emails appear in the list I just want to select the one which in the lower case

Hey!

Try this

System.Text.RegularExpressions.Regex.Match("InputVariable",".*[a-z].@[a-z].*").ToString

This will fetch the lower case data…

Reference:

Regards,
NaNi

You can use .ToLower() method.

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