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

51,917 answers

573 users

How to add spaces to a number every 4 digits in Java

2 Answers

0 votes
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Program {
    public static String formatCardNumber(String cardNumber) {
        Pattern pattern = Pattern.compile(".{4}");
        Matcher matcher = pattern.matcher(cardNumber);
        
        StringBuilder sb = new StringBuilder();
        while (matcher.find()) {
            sb.append(matcher.group()).append(" ");
        }
        
        return sb.toString().trim();
    }
    
    public static void main(String[] args) {
        String cardNumber = "9003125334656789";
        
        String cardNumberWithSpaces = formatCardNumber(cardNumber);
        
        System.out.println(cardNumberWithSpaces);
    }
}


 
/*
run
 
9003 1253 3465 6789
 
*/


 



answered May 30, 2024 by avibootz
0 votes
public class Program {
    public static void main(String[] args) {
        String cardNumber = "9003125334656789";

        String cardNumberWithSpaces = cardNumber.replaceAll(".{4}", "$0 ");

        System.out.println(cardNumberWithSpaces);
    }
}


 
/*
run
 
9003 1253 3465 6789
 
*/


 



answered May 30, 2024 by avibootz

Related questions

2 answers 101 views
2 answers 128 views
2 answers 115 views
1 answer 125 views
1 answer 95 views
1 answer 100 views
1 answer 93 views
...