Content deleted Content added
No edit summary |
Corrected definition for \W to exclude underscore (\W is opposite of \w). |
||
Line 163:
<tr>
<td>\w</td>
<td>Matches an alphanumeric character, including "_".</td>
<td align="left">
<pre>
Line 176:
<tr>
<td>\W</td>
<td>Matches a non-alphanumeric character, excluding "_".</td>
<td align="left">
<pre>
|