명시적으로 분류하지 않고 5K와 5 thousand를 5000으로 파싱해보자.
// 5000
NumberFormatters.parseLocaleStyle(Locale.US, Style.SHORT, "5K");
// 5000
NumberFormatters.parseLocaleStyle(Locale.US, Style.LONG, "5 thousand");
명시적으로 분류해서 5,50K와 5,50 thousand를 550000으로 파싱해보자.
// 550000
NumberFormatters.parseLocaleStyleRound(
Locale.US, Style.SHORT, true, "5,50K");
// 550000
NumberFormatters.parseLocaleStyleRound(
Locale.US, Style.LONG, true, "5,50 thousand");
setCurrency()와 setParseIntegerOnly(), setMaximumIntegerDigits(), setMinimumIntegerDigits(), setMinimumFractionDigits(), setMaximumFractionDigits() 메서드로 더 세부적으로 조정할 수 있다.