Hi All,
I have been trying to extract userids which has special characters in it but with no luck.
For ex let's say a field name uid contains two userids one is "roboticts@gmail.com" and the other one is "difficult+1@gmail.com".
Now I want to write a query which could extract only the uid with + sign in it. Please help on this
Assuming only 1 + and user id is in quotes.
| rex "(?<userid>[^\"]+\+[^\"]+@[^\"]+)"
Thank you for suggesting, it worked
Assuming only 1 + and user id is in quotes.
| rex "(?<userid>[^\"]+\+[^\"]+@[^\"]+)"