0

Possible Duplicate:
Displaying Currency in Indian Numbering Format

I have input number "123456" and want to convert it to "1,23,456" format in Java?

1234--> 1,234 and vice versa.

Any string operations present in Java library?

Community
  • 1
  • 1
user673218
  • 411
  • 2
  • 8
  • 20

1 Answers1

5

try java.text.NumberFormat for number formatting

jqa
  • 1,340
  • 6
  • 17