Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to move capital letters words of a string to beginning or end of the string in Ruby

2 Answers

0 votes
def sort_by_capital_letters(s)
    s.split
     .sort_by { |w| w[0].match?(/[A-Z]/) ? 1 : 0 }
     .join(" ")
end

s = "ruby Programming Open source S-ource Ruby programming language"

s = sort_by_capital_letters(s)

print s




 
#
# run:
# 
# ruby source programming language Programming Open S-ource Ruby
# 

 



answered Oct 16, 2021 by avibootz
0 votes
def sort_by_capital_letters(s)
    s.split
     .sort_by { |w| w[0].match?(/[A-Z]/) ? 0 : 1 }
     .join(" ")
end

s = "ruby Programming Open source S-ource Ruby programming language"

s = sort_by_capital_letters(s)

print s




 
#
# run:
# 
# Programming Open S-ource Ruby ruby source programming language
# 

 



answered Oct 16, 2021 by avibootz

Related questions

1 answer 194 views
1 answer 162 views
1 answer 135 views
135 views asked Oct 17, 2022 by avibootz
1 answer 211 views
1 answer 172 views
1 answer 199 views
2 answers 245 views
...