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:
A free online regular expression test tool that allows to try you regular expression pattern and see...
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 JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....