glosub_array()

 
Works like glosub(), but search_array and replace_array are iterated through, each value in search_array found in the string is replaced by the corresponding value in replace_array
Syntax
glosub_array( string, search_array, replace_array )
Return Value: string is returned with all found values replaced.
  • string = the target
  • search_array = an array of strings that will be searched for
  • replace_array = an array of the replacement strings
User Annotations: glosub_array