This page is also available in 3 other languages

[]

[StringObject Operator]

Description

Allows you access to the individual characters of a string.

Syntax

char thisChar = string1[n]

Parameters

char thisChar - a character variable

string1 - a string variable

int n - a numeric variable

Returns

The nth char of the string. Same as charAt().

See also