Multiple lines
Posted: Fri Oct 23, 2015 5:09 pm
What would be the proper expression to find and delete multiple lines? I am not talking about this....
Find=line1(.+)\n(.+)\nline4
I am talking about maybe 100s of lines where I want to delete the content from the two points and the line numbers are not always the same.
Example: This is on line 1 ....<!DOCTYPE html PUBLIC.+
This could be on line 212, 216, 229, etc.... <!--[if lte IE 6]><table><tr><td><![endif]-->
So I want to delete all in between.
Find=line1(.+)\n(.+)\nline4
I am talking about maybe 100s of lines where I want to delete the content from the two points and the line numbers are not always the same.
Example: This is on line 1 ....<!DOCTYPE html PUBLIC.+
This could be on line 212, 216, 229, etc.... <!--[if lte IE 6]><table><tr><td><![endif]-->
So I want to delete all in between.