So I have and array named data. There is contents inside that looks like this
data[0] = ['46.09', '24.76', '0.70', '0.53', '27.92', '0.00',]
I want to be able to loop through this section and extract only the numbers and toss the commas and apostrophes so my desired output would look like:
number[0] = 46.09
number[1] = 24.76
number[2] = 0.70
and so on........
any help will be greatly appreciated
Thank You!