I have this regular expression:
var from = result.match(/^From\:(.*)/m)[1].replace(/^\s+/, '');
The problem is that I have 2 “From:” and I want to get both. How do I get the next “From:” ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do it in one statement with a lookbehind (?<=) which matches, but doesn’t capture
Edit: javascript doesn’t support lookbehinds, so you need to do this: