I am trying to add fractions from a file. I have managed to put each line into a string array.
example file:
3/2
4/3
5/6

array: 3/2, 4/3, 5/6

How can I split up these numbers so that a...