I have a text where I want to capture email with line starting from “Email: ******”
JavaScript
x
8
1
Details of Contact Made:
2
Sender's Name: Test (Individual)
3
Mobile: 4354354354
4
Email: 7c92e312-93d5-4354354-45435435@email.webhook.site
5
Message: I am interested in your property. Please get in touch with me
6
Click here
7
<https://www.magicbricks.com/bricks/mailerautologin.html?
8
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
1
10
10
1
var text = `Details of Contact Made:
2
Sender's Name: Test (Individual)
3
Mobile: 4354354354
4
Email: 7c92e312-93d5-4354354-45435435@email.webhook.site
5
Message: I am interested in your property. Please get in touch with me
6
Click here
7
<https://www.magicbricks.com/bricks/mailerautologin.html?`;
8
9
var email = text.match(/Email:s*(S+?@S+)/)[1];
10
console.log(email);