Common api
Integer to String
int a = 123;
String s = Integer.toString(a);
String to char array
String s = "123";
char[] array = s.toCharArray()
Last updated
Was this helpful?
int a = 123;
String s = Integer.toString(a);
String s = "123";
char[] array = s.toCharArray()
Last updated
Was this helpful?