CharAtIndex
Alias:CharAtIndex, GetLetter
Output:StringStream
Gets the letter that appears at a specific index. First letter is at index 0.
| Parameter | Type | Required | Position | Summary |
|---|---|---|---|---|
| String From | string | ✔ | 1 | The string to extract a substring from. |
| Index AtIndex | int | ✔ | 2 | The index. |
Examples​
Example 1​
SCL​
CharAtIndex 'hello' 1
Expected Output​
e
Example 2​
SCL​
GetLetter From: 'Bye!' AtIndex: 0
Expected Output​
B