Function: |
Joins an array together (by something) into a variable. i.e. -
create(@myArray("how","are","you","today")); // it is vital to create the array // before using it
$newVar = join(@myArray) by (" "); // joins it by spaces -- " "
// $newVar now contains "how are you today"
This does not work outside of GALiRe Script. |
|