I would like to be able to filter string characters for example if I have a string named "hello123" I would like to be able to grab the first letter and store it and the second letter. So char1 = 'h' and char2 = 'e'. Obviously the word will be different each time and I only need the first 2 characters, any simple way to achieve this?