I wanted to extract email from the given string, for e.g. “My email id is (test.113@gmail.com)”, I tried using the IndexOf method to get index of @, and then extracting in 2 parts, like emailAddresspart1 (string before @), and emailAddresspart2 (string after @), but in output I’m getting this - “(test.113@gmail.com”. I don’t want that bracket before email
Please help me with this.
Thanks