String Methods Flashcards

1
Q

String Length

A

.length() method
String txt = “Hello”;
System.out.println( txt.length() );

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Uppercase

A

.toUpperCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Lowercase

A

.toLowerCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Finding a Character

A

.indexOf()

String txt = “Please locate where ‘locate’ occurs!”;
System.out.println(txt.indexOf(“locate”)); // Outputs 7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly