I am attempting to split the components of a string into an array, so that they can be accessed more easily.
For example: 4+5= should become ['4','+','5','='].
Edit: - I would need consecutive numbers to be joined together, and whitespaces can be ignored. Thanks again!