Hello and thank you in advance for the help.
I am having some trouble formatting using a Java function to mark up a price in HTML.
It seems that, no matter what I do, I cannot insert custom content between the numbers and the decimal (throws Illegal Argument Exception). Is there any known way to achieve the following:
NumberFormat nf = getNumberFormat("'<span class=\"dollars\">'##'</span></span class=\"decimal\">'.'</span></span class=\"cents\">'00'</span>'", locale);
nf.format(number);
Assume locale and number are correctly initialized.
getNumberFormat? Does it just call the DecimalFormat constructor? – Jon Skeet Oct 27 '11 at 18:50DecimalFormatconstructor, but it would have been nice if you'd given us a complete code sample instead. – Jon Skeet Oct 27 '11 at 18:56getNumberFormatcould be completely ignoring the parameters for all we know. It's in your interest to present the code - you're the one who will gain from an answer. Don't make potential answerers guess. Please read tinyurl.com/so-hints – Jon Skeet Oct 27 '11 at 19:01