Regex to get the words between @ and .com in the mail address
Hi All,Please help in writing a regex value to get the words between @ and .com in the mail address . var email = "user@example.com";var match = email.match(/(?<=@)[^\.]+(?=\.com)/);if (match) {gs.info("Matched word: " + match[0]);}After running the ...