Strings Stuff -- Examples
char c = strExample.charAt(1); // c gets ‘e’
= strExample.substring(1);
strBritishHowdy ---> “ello”
String strLectureRoomTemperature
= strExample.substring(0, 4);
strLectureRoomTemperature --> “Hell”
String strExample = “Hello”;