style, formatting, bit of a meaning wrap |
m YoshBot moved page ProtoFlux:Get Character to ProtoFlux:GetCharacter: Automated: removing spaces from ProtoFlux namespace |
||
(No difference)
|
Latest revision as of 00:20, 21 August 2025
Get Character
Characters
The Get Character node retrieves a character from a given string at a given index.
Inputs
Str (string)
The string to retrieve a character from.
Index (int)
The 0-indexed character to retrieve from Str
.
Outputs
* (char)
The character from Str
at index Index
. If Index
is either negative or greater than or equal to the length of Str
, the output will be a character with value 0
.
Examples
-
Get Character being used to retrieve a character from a string, as well as its relation to the Substring node.