Unrecognized escape sequence \R

Tool for Search and Replace across multiple files.
Post Reply
me_suzy
Posts: 20
Joined: Thu Jul 14, 2016 11:31 am

Unrecognized escape sequence \R

Post by me_suzy »

hello, many of my REGEX doesn't work here, especially when I am using \R

see this print screen https://snag.gy/TGt2Ez.jpg

In notepad++, sublime_text or GrepWin is working very good. Except TextCrawler.
User avatar
DigitalVolcano
Site Admin
Posts: 1717
Joined: Thu Jun 09, 2011 10:04 am

Re: Unrecognized escape sequence \R

Post by DigitalVolcano »

TextCrawler uses Microsoft .NET Regular expressions which doesn't currently support \R (Find Unicode line endings I think).

You might be able to replace \R with something such as

Code: Select all

\n|\r\n?
Post Reply