summaryrefslogtreecommitdiff
path: root/testdata/testoutput2
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-12-28 13:53:59 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-12-28 13:53:59 +0000
commit92a70745ba213b299a496344e59b8b7c620ccdcf (patch)
treea2bc3663125d0281558b5a9a583991167588f855 /testdata/testoutput2
parente5add45d2f1cb11e6a2370e7bf4fbd1d60ce306e (diff)
downloadpcre2-92a70745ba213b299a496344e59b8b7c620ccdcf.tar.gz
Add (?* and (?<* synonyms for non-atomic lookarounds.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1197 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testoutput2')
-rw-r--r--testdata/testoutput217
1 files changed, 17 insertions, 0 deletions
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index 4649fae..438aefe 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -17088,6 +17088,11 @@ No match
0: word1 word3 word1 word2 word3 word2 word2 word1 word3
1: word3
+/\A(?*.*\b(\w++))(?>.*?\b\1\b){3}/
+ word1 word3 word1 word2 word3 word2 word2 word1 word3 word4
+ 0: word1 word3 word1 word2 word3 word2 word2 word1 word3
+ 1: word3
+
/(*plb:(.)..|(.)...)(\1|\2)/
abcdb\=offset=4
0: b
@@ -17109,6 +17114,18 @@ No match
2: a
3: a
+/(?<*(.)..|(.)...)(\1|\2)/
+ abcdb\=offset=4
+ 0: b
+ 1: b
+ 2: <unset>
+ 3: b
+ abcda\=offset=4
+ 0: a
+ 1: <unset>
+ 2: a
+ 3: a
+
/(*non_atomic_positive_lookahead:ab)/B
------------------------------------------------------------------
Bra