Skip to content
Advertisement

Regex to capture the group

I have a text where I want to capture email with line starting from “Email: ******”

JavaScript

I have tried with .match(/Email:(.*)1/g)

But I am getting [Email:] instead of 7c92e312-93d5-4354354-45435435@email.webhook.site How do I get the matching email from the group

Advertisement

Answer

You need to access the first capture group. But I would use this version:

JavaScript
Advertisement