AlexTekTip
Programmer
Hello,
I am trying to extract anything that looks like:
mailto:some_one.me@dom_main.com">
my regex looks something like this:
/mailto:[a-zA-Z0-9_\.]+\@[a-zA-Z0-9_\.]+\"\>/
Given the abobe expression how would I turn off greedy matching? do I just enclose the whole thing in paranthese and end it with a "?
I am trying to extract anything that looks like:
mailto:some_one.me@dom_main.com">
my regex looks something like this:
/mailto:[a-zA-Z0-9_\.]+\@[a-zA-Z0-9_\.]+\"\>/
Given the abobe expression how would I turn off greedy matching? do I just enclose the whole thing in paranthese and end it with a "?