Get more control over your data in minecraft!
str A standard string char A standard string, with length 1 func A standard string, represents a function object A map like / JSON object array An array ANY Can be anything null nothing bool either an int of value 1 or 0, or true or false (depends on context)
Loops through each character in a string Returns null
Parameters
string
: str | The string to loop throughfunction
: func | the function to be runargs
: object | Any additional parameters to be passed to the functionchar
: char | The current charachter of the stringARGS
: ANY | Any arguments passed in through the args
parameter, unpacked into direct argumentsSplits a string into a list by a specified character
Returns array | outputs to a storage
Parameters
string
: str | The string to be splitchar
: char | The character to split the string atnamespace
: str | The namespace of the storage to output topath
: str | The path of the storage to output toconcatenates 2 strings Returns str | outputs to a storage
Parameters
string1
: str | The string to be concatenated ontostring2
: str | The string to be concatenated to the end of string1
namespace
: str | The namespace of the storage to output topath
: str | The path of the storage to output toCompares 2 strings Returns bool | direct return
Parameters
string1
: str | The first string to be comparedstring2
: str | The second string to be comparedLoops through each element in an array Returns null
Parameters
array
: array | The array to loop throughfunction
: func | the function to be runargs
: object | Any additional parameters to be passed to the functionelement
: ANY | The current element of the arrayARGS
: ANY | Any arguments passed in through the args
parameter, unpacked into direct argumentsConcatenates an array into a string Returns str | outputs to a storage
Parameters
array
: array | The array to be concatenatednamespace
: str | The namespace of the storage to output topath
: str | The path of the storage to output to