From 5f5e3e0edcd928b8116c3f35152d140ff04ff186 Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Fri, 17 Jun 2005 00:53:26 +0000 Subject: [PATCH] ICU-4474 add \u000b as a newline in regex matching X-SVN-Rev: 17934 --- icu4c/source/test/testdata/regextst.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/icu4c/source/test/testdata/regextst.txt b/icu4c/source/test/testdata/regextst.txt index 157376679b1..ec7ca044801 100644 --- a/icu4c/source/test/testdata/regextst.txt +++ b/icu4c/source/test/testdata/regextst.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2001-2004 International Business Machines +# Copyright (c) 2001-2005 International Business Machines # Corporation and others. All Rights Reserved. # # file: @@ -99,7 +99,7 @@ # . does not match new-lines -"." "\u000a\u000d\u0085\u000c\u2028\u2029<0>X\u000aY" +"." "\u000a\u000d\u0085\u000c\u000b\u2028\u2029<0>X\u000aY" "A." "A\u000a "# no match # \d for decimal digits @@ -453,6 +453,7 @@ "." 2 "1<0>23\u000aXYZ" "." 3 "12<0>3\u000aXYZ" "." 4 "123\u000a<0>XYZ" # . doesn't match newlines +"." 4 "123\u000b<0>XYZ" "." 4 "123\u000c<0>XYZ" "." 4 "123\u000d<0>XYZ" "." 4 "123\u000d\u000a<0>XYZ" @@ -460,6 +461,7 @@ "." 4 "123\u2028<0>XYZ" "." 4 "123\u2029<0>XYZ" "." 4s "123<0>\u000aXYZ" # . matches any +"." 4s "123<0>\u000bXYZ" "." 4s "123<0>\u000cXYZ" "." 4s "123<0>\u000dXYZ" "." 4s "123<0>\u000d\u000aXYZ"