Other Resources:
Escape sequence - Tab character \t
What is the escape sequence for the Tab character?
How to write a regular expression to captures tab delimited fields like this: Milk $0.99 No tax?
✍: FYIcenter.com
![]()
The escape sequence for the Tag character is \t, which is the same as \x09.
The regular expression to capture tab delimited fields is:
([^\t]*+)\t?
[^\t]*+ - repeats non-tab character pattern, without backtracking
\t? - skips a tab character or nothing (the end)
2013-01-26, 0👍, 0💬
Popular Posts:
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
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 ...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...