In .net split string function takes a character array as delimiters but in X++, strSplit function only takes one char delimiter how can I make strSplit works like .net split function ?
*This post is locked for comments
I have the same question (0)

In .net split string function takes a character array as delimiters but in X++, strSplit function only takes one char delimiter how can I make strSplit works like .net split function ?
*This post is locked for comments
I have the same question (0)It accepts a string (not a char) with delimiters instead of an array of characters, but the functionality is there. Try it yourself: strSplit('a,b;c', ',;').