Other Resources:
n or more times repetition quantifier {n,}
What is the "n or more times" repetition quantifier? How to use it?
How to write a regular expression using a repetition quantifier to capture the value of PI like: 3.1415926535897932384626433832795028841971 with a precision of at least 5 decimal digits?
✍: FYIcenter.com
![]()
The "n or more times" repetition quantifier allows us to repeat a pattern unit at least n or more times. The "n or more times" repetition quantifier '{n,}' and it needs be placed immediately after the pattern unit. For example:
\d{10,} # matches '6973738433' from 'World population: 6973738433'
The regular expression to capture the value of PI with a precision of at least 5 decimal digits::
3\.\d{5,}
3\. - matches '3.'
\d{5,} - repeats \d at least 5 times
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 capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
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 JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...