String.split( string str, string delim ) Get the list of strings by splitting `str` with delimiter `delim` @return list String.split.return list of substrings of `str` split by `delim` @param string str the string to get a list from @param string delim delimiter string (separator) if this is a null string, split result is the list of each character. @dependency String.substring() This uses String.substring() to enable `delim` to be a string longer than a single character. @example String.split( "Hel,loW,orld", "," ) [ "Hel", "loW", "orld" ] String.split( "Hello!!World!!Guys" , "!!" ) [ "Hello", "World", "Guys" ] String.split( "Hello", "" ) [ "H", "e", "l", "l", "o" ]
@author mathphysicscomputer @authorEmail math.physics.computer@gmail.com