Skip to main content
Version: v0.19.0-alpha 🚧

CharAtIndex

Alias:CharAtIndex, GetLetter

Output:StringStream

Gets the letter that appears at a specific index. First letter is at index 0.

ParameterTypeRequiredPositionSummary
String
From
string✔1The string to extract a substring from.
Index
AtIndex
int✔2The index.

Examples​

Example 1​

SCL​

CharAtIndex 'hello' 1

Expected Output​

e

Example 2​

SCL​

GetLetter From: 'Bye!' AtIndex: 0

Expected Output​

B