How to use tokenize function in Mapforce to split String

I recently started to study the MapForce application, and I noticed that there is a tokenize method that the user enters String and a separator. But it only returns the first token.

My problem is how can I access all tokens from the tokenize method ?

This is the MapForced map that I used

This is the result that I got to display above

I noticed that there is a warning saying that he took only the first token and ignored the rest. I need to know how I can take these tokens for String output.

+4
source share
1 answer

tokenize , , . , , concat .

enter image description here

Out put A1 B1 C1 D1

+3

Source: https://habr.com/ru/post/1658310/


All Articles