Posts: 1,035
Threads: 246
Joined: Jul 2022
Hi,
the
tok function, It seems does not support unicode delimiters(e.g: ┃). Is there any other solution?
Macro
M1
out
_s=
;aaa|bbb|ccc
ARRAY(str) a
tok _s a -1 "|"
out a ;;OK
Macro
M2
out
_s=
;aaa┃bbb┃ccc
ARRAY(str) a2
tok _s a2 -1 "┃"
out a2 ;;NO
Posts: 1,035
Threads: 246
Joined: Jul 2022
I can call the following powershell code, but many files are too slow to process
Posts: 1,035
Threads: 246
Joined: Jul 2022
It's so simple to solve!