CharAt
Summary
The CharAt function returns the character found at the specified index position.
Syntax
CharAt(<input String>, <index integer value>) |
Return Type
String
Details
The position index begins at 0, not 1.
Examples
eval CharAt('Smith', 0);'S'select CharAt('Smith', 1) from Empty(rows=1);'m' |
