User Id from email

HI ALL,

I have a variable with value A=“MS dhoni” ms.dhoni@xyz.com , I need to extract only ms.dhoni.
Any suggestions please.

@yuvaraja, Try with this options, (any one)

  1. String manipulation (Split String and get the zeroth index to get the output)
  2. Regex Match Reference

Note: Search our forum for more info :slight_smile:

Regards,
Dom :slight_smile:

Thanks, will try that out.