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 write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
Are you having problems using regular expressions when processing text strings in your applications ...
A free online regular expression test tool that allows to try you regular expression pattern and see...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...