simple Split function that splits to array or list
Posted: Fri Jan 08, 2021 11:49 am
Something vbscript like:
Split(Str, By)
parameters:
( "string", "delimiter(s)" )
in and output:
IN = Split("a b c", " ")
OUT = ARRAY ["a", "b", "c"]
why? because now the string field one has to re-split the same string every time you call it.. (to slow).
Now i always have to use rexexp or custom function..
regards
Split(Str, By)
parameters:
( "string", "delimiter(s)" )
in and output:
IN = Split("a b c", " ")
OUT = ARRAY ["a", "b", "c"]
why? because now the string field one has to re-split the same string every time you call it.. (to slow).
Now i always have to use rexexp or custom function..
regards