#14236: fix docs for \S.

This commit is contained in:
Ezio Melotti 2012-04-29 13:35:55 +03:00
parent a0b1d1eea2
commit 3899283670

View file

@ -73,7 +73,7 @@
bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the whole
range of Unicode whitespace characters.
\S Matches any non-whitespace character; equiv. to [^ \t\n\r\f\v].
\S Matches any non-whitespace character; equivalent to [^\s].
\w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_]
in bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the