Other Resources:
Backreferences \g1, \g2, ...
What is a backreference? How to use a backreference?
How to write a regular expression using a backreferences to capture 5-letter reversible words in a text string like this: civic, level, radar, rotor or stats?
✍: FYIcenter.com
Backreferences are references representing catured sub strings already matched in earlier groups. Backreferences are expressed as \g1, \g2, ... with \g1 referring the sub string resulted from the first group. For example:
(\w+)\s+\g1 # match the same word repeated
The regular expression to match 5-letter reversible words is:
(\w)(\w)\w\g2\g1
(\w) - matches the first letter and capture it as the first group
(\w) - matches the second letter and capture it as the second group
\w - matches the third letter
\g2 - the fourth letter must match the second group result
\g1 - the fifth letter must match the first group result
2013-01-23, 0👍, 0💬
Popular Posts:
A free online regular expression test tool that allows to try you regular expression pattern and see...
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
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...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...