Hello, Family
I need to extract the name from Cherry22@gmail.com using regex
hear am using this code

I need the only cherry not number how to extract
or you can suggest a split method also
mailidString.split("@"C)
but this code also give cherry123
Can anyone suggest how to extract only the cherry
Thanks
Chethan P
1 Like
Hello @copy_writes ,
you can try this +

OR
You can try this too [A-Za-z]+(?=\d{0,}@)

Cheers
@copy_writes
1 Like
can i get know how to use in split mnz using split how to extract this
1 Like
You need to extract using Split?
1 Like
yes I need to extract using split
1 Like
Try this
System.Text.RegularExpressions.Regex.Split(âCheery123@gmail.comâ,â\d{0,}@â)
2 Likes
system
(system)
Closed
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.