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:
Are you having problems using regular expressions when processing text strings in your applications ...
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
A free online regular expression test tool that allows to try you regular expression pattern and see...