How can I use the Perl regex search to find files ending in:
-------\r\n<eof>
In hex this is:
2D 2D 2D 2D 0D 0A (the end of the file)
I'm in UltraEdit, which says it uses Boost Perl regex syntax.
I've figured enough out to use:
----\x0d\x0a
which does find the lines I want, but only amongst hundreds of others that aren't at the end of the file:
whatever
------------ <- matches this also, which I don't want!
whatever
------------ <- matches this also, which I don't want!
whatever