Other Resources:
Word character class - \w
What is abbreviation of a character class of all word characters? Does it represents any alphanumeric plus '_' characters?
How to write a regular expression using a character class abbreviation to capture all words in a PHP script code like this: function get($key) {if (array_key_exists($key,$_POST)) return $_POST[$key]; else return "";}?
✍: FYIcenter.com
The predefined abbreviation of a character class of all word characters is \w, which is the same as [0-9a-zA-Z_]. \w represents any alphanumeric plus '_' characters.
The regular expression to capture all words is:
(\w+)
\w+ - matches 1 or more word characters
2013-01-23, 0👍, 0💬
Popular Posts:
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 MasterCard must start with 51 through 55 and have 16 digits. For e...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries: 127.0...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...