Content deleted Content added
MarcGarver (talk | contribs) m Now at Wikibooks Wikibooks:Regular Expressions/Examples |
→Examples: I liked the "same as" example. Added "same as" examples to others. |
||
Line 166:
<tr>
<td>\w</td>
<td>Matches an alphanumeric character, including "_"
<td align="left">
<pre>
Line 179:
<tr>
<td>\W</td>
<td>Matches a non-alphanumeric character, excluding "_"
<td align="left">
<pre>
Line 218:
<tr>
<td>\d</td>
<td>Matches a digit
<td align="left">
<pre>
Line 233:
<tr>
<td>\D</td>
<td>Matches a non-digit; same as [^0-9].</td>
<td align="left">
<pre>
|