You can index into a Str using getChar() and setChar()
Str
getChar()
setChar()
x = Str("Hello") char c = x.getChar(1); // c == 'e' x.setChar(0, 'h'); // Now x == 'hello'