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:
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....
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...
Are you having problems using regular expressions when processing text strings in your applications ...