Seeking assistance on converting the output of SPLIT from a substring into an array of integers
The requirement is to create an array of integers like [7,53,57,58] from data that is formatted "7,53,57,58"
Using SPLIT I can create a substring "7","53","57","58" and then pass that to ARRAY to give ["7","53","57","58"] however this is not acceptable because the value must be int(). What is the best way to convert the values from strings to integers inside the array?
Declare a empty array and loop through each member and convert to an int()? Can anyone give advice on this?
