How can i separate integer values using coma(,)? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can i separate integer values using coma(,)?

I want to store value in int data type but I would like to separate value like....in java Example: 10000 -> 10,000;

11th Nov 2018, 6:12 PM
Guddu Kumar
Guddu Kumar - avatar
2 Answers
+ 6
i made this awhile back there might be somthing in there you could use 😉 https://code.sololearn.com/ckZ4c1VmC28g/?ref=app
11th Nov 2018, 7:40 PM
D_Stark
D_Stark - avatar
+ 2
You can split every three digit and join with comma. But there is probably builtin function or library of it in java I think. But I forgot.😃
11th Nov 2018, 6:33 PM
Roneel
Roneel - avatar