I have suceeded with the help of this community in removing numeric values from user input, however, my code below will only retrieve the alpha characters before the numeric
This will remove all digits:
firstname1 = firstname1.replaceAll("\\d","");