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

51,805 answers

573 users

How to insert substring in a string at specific position in Java

3 Answers

0 votes
public class MyClass {
    public static void main(String args[]) {
        String s = "java programming language"; 
        
        s = s.substring(0, 4) + " SE 11 " + s.substring(5, s.length());
            
        System.out.println(s);
    }
}


/*
run:

java SE 11 programming language

*/

 



answered Feb 4, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        String s = "java programming language"; 
        
        s = s.substring(0, 5) + "SE 11" + s.substring(4, s.length());
            
        System.out.println(s);
    }
}


/*
run:

java SE 11 programming language

*/

 



answered Feb 4, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        String s = "java programming language"; 

        s = new StringBuilder(s).insert(4, " SE 11").toString();
        
        System.out.println(s);
    }
}


/*
run:

java SE 11 programming language

*/

 



answered Feb 4, 2019 by avibootz

Related questions

1 answer 187 views
2 answers 236 views
2 answers 249 views
3 answers 172 views
...