Other Resources:
Escape sequence - New Line character \n
What is the escape sequence for the New Line or Line Feed character?
How to write a regular expression to capture the last character before the New Line character?
✍: FYIcenter.com
The escape sequence for the New Line or Line Feed character is \n, which is the same as \x0A.
The regular expression to capture the last character before the New Line character is:
(.|)\n
(.|) - captures a character or nothing
\n - matches the New Line character
2013-01-26, 0👍, 0💬
Popular Posts:
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
Are you having problems using regular expressions when processing text strings in your applications ...