summaryrefslogtreecommitdiff
path: root/docs/c1/1-parse.md
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-05-29 14:02:24 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-05-29 14:02:24 +0200
commit828cd4c145b1c4ae8c32e4256ceb809b112df851 (patch)
treed1bc7db37785dab5c0070e5bb2563e4c6c4d6a56 /docs/c1/1-parse.md
parentfa5db8e89225622a1ee7a5d802f253d07884b13e (diff)
Strings allow "\x;" i.e. empty hex escape.
Diffstat (limited to 'docs/c1/1-parse.md')
-rw-r--r--docs/c1/1-parse.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/c1/1-parse.md b/docs/c1/1-parse.md
index 7df2225..f6d677a 100644
--- a/docs/c1/1-parse.md
+++ b/docs/c1/1-parse.md
@@ -379,7 +379,7 @@ strings. (Some rows use Regular Expression notation.)
+-----------------------------------+------------------------------+
| e | ASCII Escape |
+-----------------------------------+------------------------------+
- | RE: /x([0-9a-fA-F]{2})+;/ | Arbitrary bytes in hex |
+ | RE: /x([0-9a-fA-F]{2})*;/ | Arbitrary bytes in hex |
+-----------------------------------+------------------------------+
| RE: /u[0-9a-fA-F]+;/ | Unicode scalar as UTF-8 |
+-----------------------------------+------------------------------+