Other Resources:
Escape sequence - Carriage Return character \r
What is the escape sequence for the Carriage Return character?
On Unix systems, a line break is a single New Line character. But on Windows systems, a line break is a Carriage Return character followed by a New Line character. How to write a regular expression to capture line breaks for both systems?
✍: FYIcenter.com
![]()
The escape sequence for the New Line or Line Feed character is \n, which is the same as \x0D.
The regular expression to capture line breaks on both Unix and Windows systems:
\r?\n
\r? - matches the Carriage Return character or nothing
\n - matches the New Line character
2013-01-26, 0👍, 0💬
Popular Posts:
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
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 American Express must start with 34 or 37 and have 15 digits. For ...
Are you having problems using regular expressions when processing text strings in your applications ...