If I have something like:
Decimal moneyAmount = -1522;
and then call
moneyAmount.toString("c");
It will return something like:
($1,522)
Instead, I wish for there to be a negative sign and no paraenthesis. How can I modify what format provider I send to toString() so I can achieve the following effect:
-$1,522