Page 1 of 1

Help with Regular Expression

Posted: Tue Nov 17, 2009 11:00 pm
by steve1040

Posted: Wed Nov 18, 2009 7:54 am
by ben_josephs
To match just the text linkedin.com/in/ or to Mark All the lines containing it:
linkedin.com/in/

To match the lines containing the text linkedin.com/in/ without the newline at the end:
^.*linkedin.com/in/.*

To match the lines containing the text linkedin.com/in/ including the newline at the end:
^.*linkedin.com/in/.*\n