Java String methods tutorial explained
#java #string #methods
public class Main {
public static void main(String[] args) {
// String = a reference data type that can store one or more characters
// reference data types have access to useful methods
String name = "Bro";
//boolean result = name.equalsIgnoreCase("bro");
//int result = name.length();
//char result = name.charAt(0);
//int result = name.indexOf("o");
//boolean result = name.isEmpty();
//String result = name.toUpperCase();
//String result = name.toLowerCase();
//String result = name.trim();
//String result = name.replace('o', 'a');
//System.out.println(result);
}
}
On this page of the site you can watch the video online Java String methods 💬 with a duration of hours minute second in good quality, which was uploaded by the user Bro Code 19 October 2020, share the link with friends and acquaintances, this video has already been watched 121,750 times on youtube and it was liked by 5 thousand viewers. Enjoy your viewing!