Scilab Function
Last update : 23/10/2007

strsplit - split a string into a vector of strings

Calling Sequence

v = strsplit(str,ind)

Parameters

Description

v = strsplit(str,ind) splits the string str into a vector of strings at the points given by the indices in ind (after each characters pointed to by the index in ind).

Examples

    S='strsplit splits a string into a vector of strings';
    strsplit(S,[15 25 30])
    ind=strindex(S,' ')
  

See Also

strcat ,   tokens ,  

Authors

S. Steer INRIA