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,851 questions

51,772 answers

573 users

How to move all special characters to the end of a string in Java

2 Answers

0 votes
public class MyClass {
    static String move_special_characters_to_end(String s) { 
        int len = s.length(); 
        String regx = "[a-zA-Z0-9\\s+]"; 
        String chars = "", pecial_characters = ""; 
         
        for (int i = 0; i < len; i++) { 
            char ch = s.charAt(i); 
            if (String.valueOf(ch).matches(regx))  
               chars = chars + ch; 
            else
               pecial_characters = pecial_characters + ch; 
        } 
        return chars + pecial_characters; 
    } 
    public static void main(String args[]) {
        String s = "c++$vb.net&%java*() php <>/python 3.7.3"; 
         
        System.out.println(move_special_characters_to_end(s)); 
    }
}
 
 
 
/*
run:
 
c++vbnetjava php python 373$.&%*()<>/..
 
*/

 



answered Aug 11, 2019 by avibootz
edited Aug 12, 2019 by avibootz
0 votes
public class MyClass {
    static String move_special_characters_to_end(String s) { 
        int len = s.length(); 
        String regx = "[a-zA-Z0-9 ]"; 
        String chars = "", pecial_characters = ""; 
          
        for (int i = 0; i < len; i++) { 
            char ch = s.charAt(i); 
            if (String.valueOf(ch).matches(regx))  
               chars = chars + ch; 
            else
               pecial_characters = pecial_characters + ch; 
        } 
        return chars + pecial_characters; 
    } 
    public static void main(String args[]) {
        String s = "c++$vb.net&%java*() php <>/python 3.7.3"; 
          
        System.out.println(move_special_characters_to_end(s)); 
    }
}
  
  
  
/*
run:
  
cvbnetjava php python 373++$.&%*()<>/..
  
*/

 



answered Aug 12, 2019 by avibootz

Related questions

1 answer 164 views
2 answers 326 views
2 answers 306 views
1 answer 240 views
1 answer 342 views
1 answer 250 views
...