I want to be able to retrieve the amount from a string
String message = "Your account balance is ($225.63) as of today"
private BigDecimal getBalance(String message) {
//should return 225.63
}
Any suggestions on what kind of pattern/matcher I should be using for this?