I need to replace an expression that occurs from time to time when parsing a file.
How would I replace every occurrence of \r\n****\r\n with nothing ""
So it would be a line return (\r\n) a 4 digit (numbers and letters) identifier then a line return(\r\n). Replace that with just blank (basically remove it).
Example would be \r\n1e25\r\n or
1e25
And then it would remove that whole thing from the string.
I'm not too good with regular expressions how would i go about that?
Bookmarks