System.WideString.operator []

From RAD Studio API Documentation
Jump to: navigation, search

C++

WideChar & operator [](const int idx) { return Data[idx-1]; }
const WideChar& operator [](const int idx) const { return Data[idx-1]; }

Properties

Type Visibility Source Unit Parent
function public wstring.h System WideString


Description

Returns the character at a specified index in the string.

The operator [] returns the character in the string at index value idx. The operator [] assumes a base index of 1. For example, given the string 'Hello' and an index value of 2, the character returned would be 'e'.