StringBuffer::[]

StringBuffer::[]
char& operator [](int index);
char& operator [](UPInt index);
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. 
Return Value

Byte in the data array.