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.

40,023 questions

51,974 answers

573 users

How to add a part of char array to string in Java

2 Answers

0 votes
package javaapplication1;

import java.io.IOException;

public class JavaApplication1 {

    public static void main(String[] args) throws IOException {

        char[] arr = {'a', 'b', 'c', 'd', 'e', 'f', 'g'};

        String s = new String(arr, 0, 3);
        System.out.println(s);
    }
}


/*

run:
                   
abc
          
 */

 



answered Dec 19, 2016 by avibootz
edited Jan 10, 2017 by avibootz
0 votes
package javaapplication1;

import java.io.IOException;

public class JavaApplication1 {

    public static void main(String[] args) throws IOException {

        char[] arr = {'a', 'b', 'c', 'd', 'e', 'f', 'g'};

        String s = new String(arr, 3, 2);
        System.out.println(s);
    }
}


/*

run:
                   
de
          
 */

 



answered Dec 20, 2016 by avibootz
edited Jan 10, 2017 by avibootz

Related questions

1 answer 185 views
185 views asked Oct 5, 2016 by avibootz
1 answer 182 views
1 answer 167 views
1 answer 200 views
1 answer 181 views
1 answer 188 views
...