In Python. r^[\w*]$
whats that mean?
|
Quick answer: Match a string consisting of a single character, where that character is alphanumeric (letters, numbers) an underscore ( Details:
It is also worth mentioning that normal quoting and escaping rules for strings make it very difficult to enter regular expressions (all the backslashes would need to be escaped with additional backslashes), so in Python there is a special notation which has its own special quoting rules that allow for all of the backslashes to be interpreted properly, and that is what the " Note: Normally an asterisk ( For more information on regular expressions in Python, the two official references are the re module, the Regular Expression HOWTO. |
||||
|
|
|
As exhuma said, \w is any word-class character (alphanumeric as Jonathan clarifies). However because it is in square brackets it will match:
So the whole regular expression matches:
so the following would match:
or
|
|||
|
|
|
From the beginning of this line, "Any number of word characters (letter, number, underscore)" until the end of the line. I am unsure as to why it's in square brackets, as circle brackets (e.g. "(" and ")") are correct if you want the matched text returned. |
|||
|
|
|
\w is equivalent to [a-zA-Z0-9_] I don't understand the * after it or the [] around it, because \w already is a class and * in class definitions makes no sense. |
|||
|
|
|
\w refers to 0 or more alphanumeric characters and the underscore. the * in your case is also inside the character class, so [\w*] would match all of [a-zA-Z0-9_*] (the * is interpreted literally) See http://www.regular-expressions.info/reference.html To quote:
Edit corrected in response to comment |
||||
|
|
As said above \w means any word. so you could use this in the context of below
which means you can have any word as the value of the "url=" parameter |
|||
|
r"^\w*$"? – Laurence Gonsalves Oct 16 '09 at 8:30