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 217 views
217 views asked Oct 5, 2016 by avibootz
1 answer 236 views
1 answer 205 views
1 answer 218 views
1 answer 219 views
1 answer 245 views
...