define a string
a sequence of 0 or more characters
how to find out length of string
int = .length();
how can we extract individual characters from a string
char = .charAt(Location);
how do we know the location
n-1 as it starts at 0
can we use ==, !== to compare strings
no
what are used to compare strings
boolean = .equals(“What we want to find”);
if we want to ignore case when comparing what can be used after the stringname.
equalsIgnoreCase(“xyz”);
can we change individual characters in a string
NO
what is used to replace all characters in a string
just retype variable and newest line will b executed