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 Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...
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...