Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 326 Bytes

File metadata and controls

18 lines (13 loc) · 326 Bytes

String

Operations Description
Find length of string s.length()
Get character at location i s.charAt(i)
Get substring from i to j s.substring(i, j + 1)
Is empty s.isEmpty()

Iterate a string

String s = "some string";
for (char c : s.toCharArray()) {
}