summaryrefslogtreecommitdiff
path: root/testdata/testinput8
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-06-13 08:44:34 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-06-13 08:44:34 +0000
commitcc7768ebfd86be3e6126739dd2c66c76bc197ca1 (patch)
treefae05267b3db5a2d5909f322dd4b2cfc2c2c3a80 /testdata/testinput8
parent9e1e6e4433ecff8a263222322ff99e0d96f8efe5 (diff)
downloadpcre-cc7768ebfd86be3e6126739dd2c66c76bc197ca1.tar.gz
Add support for \h, \H, \v, \V.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@178 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput8')
-rw-r--r--testdata/testinput838
1 files changed, 38 insertions, 0 deletions
diff --git a/testdata/testinput8 b/testdata/testinput8
index a19493f..61e70e5 100644
--- a/testdata/testinput8
+++ b/testdata/testinput8
@@ -590,4 +590,42 @@
a\n\n\n\rb
a\r
+/\h+\V?\v{3,4}/8
+ \x09\x20\x{a0}X\x0a\x0b\x0c\x0d\x0a
+
+/\V?\v{3,4}/8
+ \x20\x{a0}X\x0a\x0b\x0c\x0d\x0a
+
+/\h+\V?\v{3,4}/8
+ >\x09\x20\x{a0}X\x0a\x0a\x0a<
+
+/\V?\v{3,4}/8
+ >\x09\x20\x{a0}X\x0a\x0a\x0a<
+
+/\H\h\V\v/8
+ X X\x0a
+ X\x09X\x0b
+ ** Failers
+ \x{a0} X\x0a
+
+/\H*\h+\V?\v{3,4}/8
+ \x09\x20\x{a0}X\x0a\x0b\x0c\x0d\x0a
+ \x09\x20\x{a0}\x0a\x0b\x0c\x0d\x0a
+ \x09\x20\x{a0}\x0a\x0b\x0c
+ ** Failers
+ \x09\x20\x{a0}\x0a\x0b
+
+/\H\h\V\v/8
+ \x{3001}\x{3000}\x{2030}\x{2028}
+ X\x{180e}X\x{85}
+ ** Failers
+ \x{2009} X\x0a
+
+/\H*\h+\V?\v{3,4}/8
+ \x{1680}\x{180e}\x{2007}X\x{2028}\x{2029}\x0c\x0d\x0a
+ \x09\x{205f}\x{a0}\x0a\x{2029}\x0c\x{2028}\x0a
+ \x09\x20\x{202f}\x0a\x0b\x0c
+ ** Failers
+ \x09\x{200a}\x{a0}\x{2028}\x0b
+
/ End of testinput 8 /