Other Resources:
Escape sequence - Character in octal \... \o{...}
What is the escape sequence for a character written in octal format?
How to write a regular expression to capture the escape (Backslash) \ character in a string like: \x5C
✍: FYIcenter.com
![]()
The escape sequence for any character in octal number format is '\...' or \o{...}, '...' is the 3 octal digits. For example:
\063 - matches '3' character
\015 - matches the Carriage Return character
\x{012} - matches the Line Feed character
The regular expression to capture the escape \ character is:
\134
\134 - matches the Backslash character \ using octal digits
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...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
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....