String
char[] helloArray = { 'a', 'b', 'c'};
String helloString = new String(helloArray);
char[] helloArray = { 'a', 'b', 'c'};
String helloString = "";
helloString = helloString.copyValueOf( helloArray );
helloString = helloString.copyValueOf( helloArray, 2, 6 );
s1.concat(s2)
System.out.printf("%s%s",s1,s2);
String str = String.format("%s%s",s1,s2);
s1.charAt(2)
String s1 = "123456";
char[] s2 = new char[6];
s1.getChars(0, 6, s2, 0);
String s1 = "12345634";
int index = s1.indexOf("3");
s1.split("-")
s1.split("-",2)
s1.contains("Run")
String s1 = "1abc563";
char[] chars = s1.toCharArray();
s1.isEmpty()