Other Resources:
Quoted sequence \Q...\E
What is the quoted sequence to disable pattern metacharacters?
How to write a regular expression to capture the main() method in a Java class like: class ABC { public static void main(String args[]){...} }
✍: FYIcenter.com
The quoted sequence is a subpattern where pattern metacharacters are treated literally. A quoted sequence starts with \Q and ends with \E. For example:
\Q\.^*+?[]|(){}\E - matches \.^*+?[]|(){}
The regular expression to capture the main() method in Java class is:
\Qmain(String args[])\E
\Q...\E - Quoted sequence to keep () [] as is
2013-01-26, 0👍, 0💬
Popular Posts:
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...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
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 JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...