Provides simple operations for manipulating text.
EditOperations
EditgetSubstring
Returns a portion of the input text, given a position and length.
Inputs
| Name | Description |
| text | The input text. |
| startIndex | The position of the first character of the destination string. |
| length | The length of the destination string, if you don't want it to go to the end of the input string. |
Outputs
Editappend
Returns a string that's the result of appending the second string to the first string.
Inputs
| Name | Description |
| first | The input leading text. |
| second | The input trailing string. |
Outputs
EditskipFirstCharacters
Chops the specified number of characters off of the input text.
Inputs
| Name | Description |
| text | The input text. |
| skipCount | The number of characters to skip. |
Outputs
Editsplit
Returns an array of the substrings separated by a given separator.
Inputs
| Name | Description |
| text | The input text. |
| separator | The text used to delimit the substrings. |
Outputs
EditObjects
Details about type definitions can be found on the
Block Metadata Type System page.