File: 1.txt
Attempt to find:123\r\n
NOT working example:Search for: *empty*
Find text: 123\n
File: 1.txt
Attempts to find:123\n
Search for: *empty*
Find text: 123\n
Both does not work. Seems the `\n` in the `Find text` corresponds to the Windows line return character sequence - `\r\n`.Search for: *empty*
Find text: 123\r
Is there a way to search `\n` in a file text as a raw character instead of character sequence?