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:
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...