[] (element access)

Description

Allows you access to the individual characters of a string.

Syntax


char thisChar = string1[n]

Parameters

thisChar (char) – a character variable
string1 – a String variable
n (int) – a numeric variable

Returns

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

Example

StringCharacters

See also

String
charAt()


Language Reference Home

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.