diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-01-27 16:03:11 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-01-27 16:25:57 -0700 |
commit | e40e74fee4d286deb301438ca1e472457b98b7d0 (patch) | |
tree | 00654c53f62a916aa06c620ee8c30f4ceb1088af /t | |
parent | e1d8d8ac0f536393477738106d3b82b99d6df317 (diff) | |
download | perl-e40e74fee4d286deb301438ca1e472457b98b7d0.tar.gz |
regex: \p{} in pattern implies Unicode semantics
Now, a Unicode property match specified in the pattern will indicate that the pattern is meant for matching according to Unicode rules
Diffstat (limited to 't')
-rw-r--r-- | t/re/re_tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index 3c3b10f51e..bc4a7fc7c7 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1489,4 +1489,5 @@ abc\N{def - c - \\N{NAME} must be resolved by the lexer (q1|z)*(q2|z)*z{15}-.*?(x(a|bc)*y){2,3}Z zzzzzzzzzzzzzzzz-xayxayxayxayZ y $& zzzzzzzzzzzzzzzz-xayxayxayxayZ (?:(?:)foo|bar|zot|rt78356) foo y $& foo +/\xe0\pL/i \xc0a y $& \xc0a # vim: softtabstop=0 noexpandtab |