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-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ <h1 id="syntax">Syntax</h1>
68
68
<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>
69
69
<tr><td>Match a whitespace character (except newline)</td><tdclass="na"></td><tdclass="na"></td><td></td><td></td><td><code>\s</code><code>[[:space:]]</code></td></tr>
70
70
<tr><td>Whitespace including newline</td><td><code>\s</code><code>[[:space:]]</code></td><td><code>\s</code></td><td><code>[[:space:]]</code></td><td><code>[[:space:]]</code></td><td><code>\_s</code></td></tr>
71
-
<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>
71
+
<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>
72
72
<tr><td>Match a digit character</td><td><code>\d</code><code>[[:digit:]]</code></td><td><code>\d</code></td><td><code>[[:digit:]]</code></td><td><code>[[:digit:]]</code></td><td><code>\d</code><code>[[:digit:]]</code></td></tr>
73
73
<tr><td>Match a non-digit character</td><td><code>\D</code></td><td><code>\D</code></td><td><code>[^[:digit:]]</code></td><td><code>[^[:digit:]]</code></td><td><code>\D</code><code>[^[:digit:]]</code></td></tr>
0 commit comments