Math and Computation
Array Manipulation
explode_real(array,seperator,string) Creates a local array of reals from data in a given string using a given seperator as a delimiter.
explode_real_global(array,seperator,string) Creates a global array of reals from data in a given string using a given seperator as a delimiter.
explode_string(array,seperator,string) Creates a local array of strings from data in a given string using a given seperator as a delimiter.
explode_string_global(array,seperator,string) Creates a global array of strings from data in a given string using a given seperator as a delimiter.
implode_real(sep,array,size) Returns a string comprised of each element of the given local array of reals seperated by the given seperator.
implode_real_global(sep,array,size) Returns a string comprised of each element of the given global array of strings seperated by the given seperator.
implode_string(sep,array,size) Returns a string comprised of each element of the given local array of strings seperated by the given seperator.
implode_string_global(sep,array,size) Returns a string comprised of each element of the given global array of strings seperated by the given seperator.