如何使用 Perl 正则表达式搜索来查找以以下结尾的文件:
-------\r\n<eof>
在十六进制中,这是:
2D 2D 2D 2D 0D 0A (the end of the file)
我在 UltraEdit 中,它说它使用 Boost Perl 正则表达式语法。
我已经想出足够的使用:
----\x0d\x0a
它确实找到了我想要的行,但仅在数百个不在文件末尾的行中:
whatever
------------ <- matches this also, which I don't want!
whatever
------------ <- matches this also, which I don't want!
whatever