i'd made this currency pattern to prefix a sign (+ or -) based on the value
static final String _currencyWithPrefixSignAndSymbol = "+ \u00A4 0.00 ;- \u00A4 0.00";
the pattern put a + prefix if the value is positive and a - if negative;
Problem: i need to remove these signs when the value is 0, is there a way to do this in the pattern ? without doing something like a string.Replace at the final?