Answers for "how to create a new string method"

1

string method example in java

public char charAt(int index)
-----------------------------
String x = "airplane";
System.out.println( x.charAt(2) ); // output is 'r'
Posted by: Guest on January-25-2020
0

string method example in java

public String trim()

String x = " hi ";
System.out.println( x + "x" ); // result is" hi x"
System.out.println(x.trim() + "x"); // result is "hix"
Posted by: Guest on January-25-2020

Code answers related to "how to create a new string method"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language