]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/data/brkitr/title.txt
ICU-6.2.4.tar.gz
[apple/icu.git] / icuSources / data / brkitr / title.txt
index d12517f6d2e45a7432f73fe8fa5e375d943c55cf..e3f6566c90139d53c2175bafa6dfc7f9abf01f4a 100644 (file)
@@ -11,7 +11,7 @@ $NotCased        = [^ $Cased];
 #
 #  If the iterator was not stopped on a cased character, advance it to the first cased char
 #
-($NotCased | $CaseIgnorable)*;
+$NotCased+;
 
 #
 #  If the iterator starts on a cased item, advance through all adjacent cased items plus
@@ -22,5 +22,11 @@ $Cased ($Cased | $CaseIgnorable)* $NotCased*;
 #
 #  Reverse Rules
 #
-!$NotCased* ($Cased | $CaseIgnorable)* $NotCased?;
 
+! $NotCased+;
+
+#
+#  If the iterator starts on a cased item, advance through all adjacent cased items plus
+#    any non-cased stuff, to reach the start of the next word.
+#
+! $NotCased* ($Cased | $CaseIgnorable)* $Cased;
\ No newline at end of file