String::[]

String::[]
const char& operator [](int index) const;
const char& operator [](UPInt index) const;
Description

[] operator returns the byte in the data array at the specified index. The index should be less than the number of bytes in the string.

Parameters
Parameters 
Description 
int index 
Specifies the index to retrieve the byte at. 
Return Value

Reference to the byte in the data array.