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 201 views
201 views asked Oct 5, 2016 by avibootz
1 answer 213 views
1 answer 184 views
1 answer 207 views
1 answer 204 views
1 answer 219 views
...