
Hi,
I'm building a flow where I have I get string of the form "<int> - <int>". I need to extract both integer values into an array. I can use the split function to split on "-" but it returns string array as a result. Currently I have to reiterate the array and convert every index of split output into integer and assign into my int arrray.
Is there an easy way to do it which can directly extract numbers as integer array?