Sub-String Manipulator
Clip text strings.
Intro
The Sub-String Manipulator can be used to output a specified range of characters. The range is set in the same way all arrays work in Cavalry. For example, the text string Cavalry
has 7 letters and so would be represented by a range between 0 and 6.
0
1
2
3
4
5
6
C
a
v
a
l
r
y
UI
Start Position - set the index of your first character.
End Position - set the index of your last character.
If your input text was Cavalry
but you only wanted to output the string ava
you'd set a Start Position of 1
and an End Position of 3
.
Last updated
Was this helpful?