summaryrefslogtreecommitdiffhomepage
path: root/docs/cregex_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-10-19 17:47:40 +0200
committerGitHub <[email protected]>2022-10-19 17:47:40 +0200
commit79d43229e64c53cd8b358a02a58fdbe124aa5e0f (patch)
tree143c6329d6768350fc91f71323abdf62f9389404 /docs/cregex_api.md
parent806d2eb0dede22bd369eb36b35eadfa864f5f663 (diff)
downloadSTC-modified-79d43229e64c53cd8b358a02a58fdbe124aa5e0f.tar.gz
STC-modified-79d43229e64c53cd8b358a02a58fdbe124aa5e0f.zip
Update cregex_api.md
Diffstat (limited to 'docs/cregex_api.md')
-rw-r--r--docs/cregex_api.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/cregex_api.md b/docs/cregex_api.md
index 414fbe11..52014afa 100644
--- a/docs/cregex_api.md
+++ b/docs/cregex_api.md
@@ -173,13 +173,13 @@ c_formatch (it, &re, input)
| \n \t \r | Match UTF8 newline, tab, carriage return | |
| \d \s \w | Match UTF8 digit, whitespace, alphanumeric character | |
| \D \S \W | Do not match the groups described above | |
-| \p{Space} or \p{Sz} | Match UTF8 whitespace | * |
-| \p{Digit} or \p{Nd} | Match UTF8 numeric | * |
+| \p{Alnum} | Match UTF8 alpha numeric | * |
| \p{XDigit} | Match UTF8 hex number | * |
+| \p{Alpha} or \p{LC} | Match UTF8 cased letter | * |
+| \p{Digit} or \p{Nd} | Match UTF8 numeric | * |
| \p{Lower} or \p{Ll} | Match UTF8 lower case | * |
| \p{Upper} or \p{Lu} | Match UTF8 upper case | * |
-| \p{Alpha} or \p{LC} | Match UTF8 cased letter | * |
-| \p{Alnum} | Match UTF8 alpha numeric | * |
+| \p{Space} or \p{Sz} | Match UTF8 whitespace | * |
| \P{***Class***} | Do not match the classes described above | * |
| [[:alnum:]] [[:alpha:]] [[:ascii:]] | Match ASCII character class | * |
| [[:blank:]] [[:cntrl:]] [[:digit:]] | Match ASCII character class | * |