diff --git a/source/regex.tex b/source/regex.tex index 666bf793f2..97d8a33560 100644 --- a/source/regex.tex +++ b/source/regex.tex @@ -3705,17 +3705,17 @@ In addition the following expressions shall be equivalent: \begin{codeblock} -\d and [[:digit:]] +\d @\textnormal{and}@ [[:digit:]] -\D and [^[:digit:]] +\D @\textnormal{and}@ [^[:digit:]] -\s and [[:space:]] +\s @\textnormal{and}@ [[:space:]] -\S and [^[:space:]] +\S @\textnormal{and}@ [^[:space:]] -\w and [_[:alnum:]] +\w @\textnormal{and}@ [_[:alnum:]] -\W and [^_[:alnum:]] +\W @\textnormal{and}@ [^_[:alnum:]] \end{codeblock} \pnum