EmEditor 15.1.2 64 bit
I have a large file (~130MB) of pipe delimited data (link to obfuscated data compressed to ~10MB for faster download). I want to delete all lines that have the text “ABCD00000” in one of the data fields (running in text mode, not CSV mode since I don’t need columnar view, just straight text editing). To do this, I did a search and replace using the following regex…
Find: ^.*ABCD00000.*\n
Replace with: [nothing]
After noticing it was taking longer than I expected, I cancelled the operation. At this point, clicking anywhere in the text edit window causes corruption and the file must be closed and reopened to be usable again. I can post a demo video if that helps. Tried on two different computers; one running EmEd from my USB stick using .ini files, the other using an install for everyone installation.
BTW… Cygwin64’s sed completed in a little over 1 second on my computer.
$ time sed -e "/ABCD00000/ d" data.csv > out.txt
real 0m1.147s
user 0m1.046s
sys 0m0.030s