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

51,877 answers

573 users

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

2 Answers

0 votes
public class MoveSpecialChars {
    static String move_special_characters_to_beginning(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 pecial_characters + chars; 
    } 
    public static void main(String args[]) {
        String s = "c++14$vb.net&%java*() php <>/python 3.7.3"; 
          
        System.out.println(move_special_characters_to_beginning(s)); 
    }
}
  
  
  
/*
run:
  
$.&%*()<>/..c++14vbnetjava php python 373
  
*/

 



answered Aug 15, 2019 by avibootz
edited Dec 13, 2025 by avibootz
0 votes
public class MoveSpecialChars {
    public static String moveSpecialCharactersToBeginning(String s) {
        StringBuilder specials = new StringBuilder();
        StringBuilder chars = new StringBuilder();

        for (char ch : s.toCharArray()) {
            if (Character.isLetterOrDigit(ch) || Character.isWhitespace(ch)) {
                chars.append(ch);
            } else {
                specials.append(ch);
            }
        }

        return specials.toString() + chars.toString();
    }

    public static void main(String[] args) {
        String s = "c++20$c&^java*(rust) php <>/python 3.14.2";
        
        System.out.println(moveSpecialCharactersToBeginning(s));
    }
}



/*
run:

++$&^*()<>/..c20cjavarust php python 3142

*/

 



answered Dec 13, 2025 by avibootz

Related questions

...