func X3.EN_TEXT_SPLIT(Clbfile TEXT_TO_CUT_IN, Char DELIMITER_IN, Clbfile() ARRAY_OUT) : Integer

Split a string into an array of strings based on a separator

  • TEXT_TO_CUT_IN Clbfile String to be cut
  • DELIMITER_IN Char Separator to search for in order to split
  • ARRAY_OUT Clbfile() Resulting array of values
Return Integer Number of records
Example

The string "test|of|string" with the separator "|" will be returned as:
return(0) = "test"
return(1) = "of"
return(2) = "string"