Hi, how can I read a number, for example 7344, in its specific digits at its specific position? ‘7’ in position 0, ‘3’ in position 1, ‘4’ in position 2, ‘4’ in position 3? I tried using foreach for I’m not sure how to go about doing it.
Do I have to introduce a delimiter to it such as a comma, giving it 7,3,4,4 and then split the number into its digits according to the delimiter?