You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: regex.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ <h1>Syntax</h1>
99
99
<tr><td>Any character (including newline)</td><tdclass="na"></td><tdclass="na"></td><tdclass="na"></td><tdclass="na"></td><td><code>\_.</code></td></tr>
100
100
<tr><td>Match a "word" character (alphanumeric plus <code>_</code>)</td><td><code>\w</code><code>[[:word:]]</code></td><td><code>\w</code></td><td><code>\w</code></td><td><code>\w</code></td><td><code>\w</code></td></tr>
<tr><td>Match a non-"word" character</td><td><code>\W</code></td><td><code>\W</code></td><tdclass="na"></td><tdclass="na"></td><td><code>\W</code></td></tr>
102
+
<tr><td>Match a non-"word" character</td><td><code>\W</code></td><td><code>\W</code></td><td><code>\W</code></td><td><code>\W</code></td><td><code>\W</code></td></tr>
103
103
<tr><td>Match a whitespace character (except newline)</td><tdclass="na"></td><tdclass="na"></td><td><code>\s</code><code>[[:space:]]</code></td><td><code>\s</code><code>[[:space:]]</code></td><td><code>\s</code><code>[[:space:]]</code></td></tr>
104
104
<tr><td>Whitespace including newline</td><td><code>\s</code><code>[[:space:]]</code></td><td><code>\s</code></td><tdclass="na"></td><tdclass="na"></td><td><code>\_s</code></td></tr>
105
105
<tr><td>Match a non-whitespace character</td><td><code>\S</code></td><td><code>\S</code></td><td><code>[^[:space:]]</code></td><td><code>[^[:space:]]</code></td><td><code>\S</code><code>[^[:space:]]</code></td></tr>
0 commit comments