You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could a parser be added for MoneyFormatterBuilder.appendCurrencySymbolLocalized()? It would be useful when you get a "$12.34" string as input to pass it directly to joda-money, eg
MoneyFormatter format = new MoneyFormatterBuilder()
.appendCurrencySymbolLocalized()
.appendAmountLocalized()
.toFormatter();
Money simpleMoney = format.parse(input)
On 0.9.1 this gives "java.lang.UnsupportedOperationException: MoneyFomatter has not been configured to be able to parse"
The text was updated successfully, but these errors were encountered:
Could a parser be added for
MoneyFormatterBuilder.appendCurrencySymbolLocalized()
? It would be useful when you get a "$12.34" string as input to pass it directly to joda-money, egOn 0.9.1 this gives "java.lang.UnsupportedOperationException: MoneyFomatter has not been configured to be able to parse"
The text was updated successfully, but these errors were encountered: