Is it possible to format price according to rules like this using DecimalFormat in Java: 50000 => 50 000 rub 00 kop
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
probably does what you want. It might use symbols instead of words for roubles and kopeks. Here's a working example:
This output for me:
which is not exactly what you asked for. But it is a start. This alternative
gave me
|
||||
|
|
Assuming you are using .Net you can format the output using;
Which outputs;
Not sure how to get rid of the decimal place though and omit if kop == zero. You can also format +/ve -/ve strings differently see; http://blog.stevex.net/string-formatting-in-csharp/ |
|||
|
|