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:
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
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 JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
A free online regular expression test tool that allows to try you regular expression pattern and see...