I have a text file where I need to remove the carriage return/line feed in a particular situation. I don't want to remove them all.
I know that I can run code to remove CR/LF. However, I have a file where I only wish to remove the CR/LF if it is preceded by a /
The like looks like this ( inserted in correct spots ):
"2016-09-11 23:22:03","20\<CR/LF>
16-09-11 >03:22:24",20160911,1,16,21,281,281,4272,4272,NULL,NULL,NULL,0,2100,2528,NULL<CR/LF>
So I do not want the last removed, only where it is preceded by the \, is in the first example above.
Thanks in advance