How to extract email id from a string without using regex

Hello @indiedev91 ,
Try this method it may help for you

Split(YourString," ")

You ca use the split string and loop it using for each loop , you can split each string.
Within loop , use if condition for isolate the string contains “@” “.”

item.ToString.Contains("@") And item.ToString.Contains(".")

KIndly refer this flow of XAML file.
EmailString_Manipulation.xaml (9.3 KB)

image

1 Like