klyn.StringBuilder.operator[]
method
public operator[](position as UInt) as Char throws IndexException:
Description
Gets or sets one character by index. builder = StringBuilder() builder.append("Klyn") builder[0u] = 'C' print(builder[0u])
Throws
  • IndexException if position is outside [0, length).
Example