Other Resources:
1 or 0 times repetition quantifier ?
What is the 1 or 0 times repetition quantifier? How to use it?
How to write a regular expression using a 1 or 0 times repetition quantifier to capture both spellings of skilful and skillful?
✍: FYIcenter.com
![]()
The "1 or 0 times" repetition quantifier allows us to create a special logical OR operation of "match the pattern unit or nothing". The "1 or 0 times" repetition quantifier character is '?' and it needs be placed immediately after the pattern unit. For example:
colou?r # repeat 'u' 1 or 0 times, same as colo(u|)r arm(strong)? # repeat 'strong' 1 or 0 times, same as arm(strong|)
The regular expression to capture both skilful and skillful is:
skill?ful
l? - repeat 'u' 1 or 0 times
2013-01-26, 0👍, 0💬
Popular Posts:
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...