How can I sort a string "13,5,8,4,2,1,9" in ascending order, to get 1,2,4,5,8,9,13?
feedback
|
If any of those steps causes you difficulties, please be more specific. | |||
|
feedback
|
| |||||||||
feedback
|
|
As one liner, using Google Collections (updated with Kevin's suggestion)
(old version)
| |||||||||||||
feedback
|
This solution uses:
| ||||
|
feedback
|
|
I would tokenize the string using StringTokenizer, | |||||
feedback
|
Might have some misspellings, but I think not. Also, add the appropriate imports yourself =) | |||||||
feedback
|
|
So you have a string containing a comma-delimited set of integers that you need to sort and then output to a string? Try | |||
|
feedback
|
|
ok you can try this one it work in all case. package com.java; import java.util.*; public class cd
{
} | |||
|
feedback
|
|
An alternative using
| |||
|
feedback
|
|
This is one way to sorting.
| |||||||||||||||||
feedback
|
|
Bash is SO powerful :-) numbers="1, 2, 9, 4, 7, 5" ; for number in $(echo "$numbers") ; do echo "$number" | tr -d ", "; done | sort | tr "\n" "," ; echo "" | |||
|
feedback
|