10 lines
239 B
Text
10 lines
239 B
Text
|
|
# Project : Multisplit
|
||
|
|
|
||
|
|
str = "a!===b=!=c"
|
||
|
|
sep = "=== != =! b =!="
|
||
|
|
sep = str2list(substr(sep, " ", nl))
|
||
|
|
for n = 1 to len(sep)
|
||
|
|
pos = substr(str, sep[n])
|
||
|
|
see "" + n + ": " + substr(str, 1, pos-1) + " Sep By: " + sep[n] + nl
|
||
|
|
next
|