Other Resources:
0 or more times repetition quantifier *
What is the 0 or more times repetition quantifier? How to use it?
How to write a regular expression using a repetition quantifier to capture all names and values in a URL query string like this: User=Jack&Age=&City=Paris?
✍: FYIcenter.com
The "0 or more times" repetition quantifier allows us to repeat a pattern unit 1 or more times in the matching process. The "0 or more times" repetition quantifier character is '*' and it needs be placed immediately after the pattern unit. For example:
/^ */ # matches any number of leading space characters / *$/ # matches any number of trailing space characters
The regular expression to capture all names and values in a URL query string is:
([^=]+)=([^&]*)
([^=]+) - repeats 1 more times on any non '=' characters
= - matches the '-'
([^&]*) - repeats any number of times on any non '&' characters
2013-01-26, 0👍, 0💬
Popular Posts:
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
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 ...
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....