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

51,826 answers

573 users

How to swap two characters in string by index with Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        String str = "java python c c++";

        char[] arr = str.toCharArray();

        char tmp = arr[1];
        arr[1] = arr[7];
        arr[7] = tmp;

        str = new String(arr);

        System.out.println(str);
    }
}
 
 
 
 
/*
run:
  
jtva pyahon c c++
  
*/

 



answered Aug 23, 2022 by avibootz

Related questions

1 answer 85 views
2 answers 135 views
2 answers 137 views
3 answers 185 views
1 answer 114 views
1 answer 247 views
1 answer 163 views
...