linuxMaestro
Instructor
This matches everything after the from:
/^From.*)/"
Ex. "Name Here" <email@domain.com>"
But I am trying to just match the email, I tried all of the following, but none work:
/^From\<+.*+\>)/"
/^From:+.*+(<+.*+>)/"
/^From:+.*+(\<+.*+\>)/"
/^From:+(.*+(\<+.*+\>))/"
/^From:+(.*+\<+.*+\>)/"
/^From:+(.*+(<+.*+>))/"
/^From:+(.*+<+.*+>)/"
What am I doing wrong?
/^From: start with From:
+.* match 0 or more characters before
(\<+.*+\>) 0 or more characters enclosed in angle brackets before
/" End of line
A little help please.
/^From.*)/"
Ex. "Name Here" <email@domain.com>"
But I am trying to just match the email, I tried all of the following, but none work:
/^From\<+.*+\>)/"
/^From:+.*+(<+.*+>)/"
/^From:+.*+(\<+.*+\>)/"
/^From:+(.*+(\<+.*+\>))/"
/^From:+(.*+\<+.*+\>)/"
/^From:+(.*+(<+.*+>))/"
/^From:+(.*+<+.*+>)/"
What am I doing wrong?
/^From: start with From:
+.* match 0 or more characters before
(\<+.*+\>) 0 or more characters enclosed in angle brackets before
/" End of line
A little help please.