1 // © 2018 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 #include "unicode/utypes.h"
6 #if !UCONFIG_NO_FORMATTING
7 #ifndef __NUMPARSE_SCIENTIFIC_H__
8 #define __NUMPARSE_SCIENTIFIC_H__
10 #include "numparse_types.h"
11 #include "numparse_decimal.h"
12 #include "unicode/numberformatter.h"
14 using icu::number::impl::Grouper
;
16 U_NAMESPACE_BEGIN
namespace numparse
{
20 class ScientificMatcher
: public NumberParseMatcher
, public UMemory
{
22 ScientificMatcher() = default; // WARNING: Leaves the object in an unusable state
24 ScientificMatcher(const DecimalFormatSymbols
& dfs
, const Grouper
& grouper
);
26 bool match(StringSegment
& segment
, ParsedNumber
& result
, UErrorCode
& status
) const override
;
28 bool smokeTest(const StringSegment
& segment
) const override
;
30 UnicodeString
toString() const override
;
33 UnicodeString fExponentSeparatorString
;
34 DecimalMatcher fExponentMatcher
;
35 UnicodeString fCustomMinusSign
;
36 UnicodeString fCustomPlusSign
;
41 } // namespace numparse
44 #endif //__NUMPARSE_SCIENTIFIC_H__
45 #endif /* #if !UCONFIG_NO_FORMATTING */