split
lib callCapy
function split(value : string, delimiter : string) dval
Description
Use split to separate text at each delimiter.
Return Values
List-shaped dval.
Example
Capy
print(join(split("one,two", ","), "|"), "\n")
function split(value : string, delimiter : string) dval
Use split to separate text at each delimiter.
List-shaped dval.
print(join(split("one,two", ","), "|"), "\n")