Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For Array, there is a pretty sort method to rearrange the sequence of elements. I want to archive the same results for String.

For example, I have a string str = "String", I want to sort it alphabetically with one simple method to "ginrSt".

Is there native way to enable this or should I include mixins from Enumerable?

share|improve this question

3 Answers

up vote 53 down vote accepted

The chars method returns an enumeration of the string's characters.

str.chars.sort.join
#=> "Sginrt"

To sort case insensitively:

str.chars.sort { |a, b| a.casecmp(b) } .join
#=> "ginrSt"
share|improve this answer
7  
or str.chars.sort(&:casecmp).join – tokland Mar 7 '12 at 12:05

Also (just for fun)

str = "String"
str.chars.sort_by(&:downcase).join
#=> "ginrSt"
share|improve this answer
str.unpack("c*").sort.pack("c*")
share|improve this answer
add some explanation to it. what exactly are you trying to say? – R.A May 15 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.