From 79d43229e64c53cd8b358a02a58fdbe124aa5e0f Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylov@users.noreply.github.com> Date: Wed, 19 Oct 2022 17:47:40 +0200 Subject: Update cregex_api.md --- docs/cregex_api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/cregex_api.md') 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 | * | -- cgit v1.2.3