aboutsummaryrefslogtreecommitdiff
path: root/tests/regex
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-08-31 03:43:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-08-31 03:43:11 +0300
commitb8a96d789253c91093476f898611d5903799e84e (patch)
tree510bad1358bc443a0b47a1fd8c9d55057c4fa411 /tests/regex
parent0cf84e1f006988c114bdca36715d3a2c0601a7d5 (diff)
Fix regex_replace_ex() to ignore unmatched sub-expression references
Diffstat (limited to 'tests/regex')
-rw-r--r--tests/regex/testscript10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/regex/testscript b/tests/regex/testscript
index 1af604c..8291f36 100644
--- a/tests/regex/testscript
+++ b/tests/regex/testscript
@@ -21,7 +21,10 @@
: capture
:
- $* abcdefghij '(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)' '$1$10' >aj
+ {
+ $* abcdefghij '(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)' '$1$10' >aj : matched
+ $* a '(a)|(b)' '$1$2$3' >a : unmatched
+ }
}
: perl-escape
@@ -33,7 +36,10 @@
: capture
:
- $* abcdefghij '(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)' '\1\10' >aa0
+ {
+ $* abcdefghij '(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)' '\1\10' >aa0 : matched
+ $* a '(a)|(b)' '\1\2\3' >a : unmatched
+ }
: upper
: