diff options
| author | Tyge Løvset <[email protected]> | 2022-10-19 17:47:40 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-19 17:47:40 +0200 |
| commit | 79d43229e64c53cd8b358a02a58fdbe124aa5e0f (patch) | |
| tree | 143c6329d6768350fc91f71323abdf62f9389404 /docs/cregex_api.md | |
| parent | 806d2eb0dede22bd369eb36b35eadfa864f5f663 (diff) | |
| download | STC-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.md | 8 |
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 | * | |
