mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
Add it as a standard matcher, C and J
This commit is contained in:
parent
226cfe18e4
commit
36a388d5bc
2 changed files with 2 additions and 0 deletions
|
@ -165,6 +165,7 @@ NumberParserImpl::createParserFromProperties(const number::impl::DecimalFormatPr
|
|||
if (!isStrict) {
|
||||
parser->addMatcher(parser->fLocalMatchers.plusSign = {symbols, false});
|
||||
parser->addMatcher(parser->fLocalMatchers.minusSign = {symbols, false});
|
||||
parser->addMatcher(parser->fLocalMatchers.approximatelySign = {symbols, false});
|
||||
}
|
||||
parser->addMatcher(parser->fLocalMatchers.nan = {symbols});
|
||||
parser->addMatcher(parser->fLocalMatchers.infinity = {symbols});
|
||||
|
|
|
@ -227,6 +227,7 @@ public class NumberParserImpl {
|
|||
if (parseMode == ParseMode.LENIENT) {
|
||||
parser.addMatcher(PlusSignMatcher.getInstance(symbols, false));
|
||||
parser.addMatcher(MinusSignMatcher.getInstance(symbols, false));
|
||||
parser.addMatcher(ApproximatelySignMatcher.getInstance(symbols, false));
|
||||
}
|
||||
parser.addMatcher(NanMatcher.getInstance(symbols, parseFlags));
|
||||
parser.addMatcher(InfinityMatcher.getInstance(symbols));
|
||||
|
|
Loading…
Add table
Reference in a new issue