Split String in Nanoflow

1
Hello, Is there any way to split string without using java. I am already using java it is not working in other environment. So I need to replace that java. Can any one help me on this?
asked
2 answers
2

You can use substring($yourstring, startindex, length) to split strings in microflow / nanoflow actions. If needed you can combine these with find($yourstring, string to find) if you want to split at a certain character like a space or a comma. 

You can read more about string functions here in the documentation.

answered
0

I needed just that so a while back so I added a split function to my module:

https://marketplace.mendix.com/link/component/110104

answered