Removes all non-alphabetical characters from a string.
The string to clean.
A string with only alphabetic characters.
removeNonAlpha('Hello123!'); // 'Hello' Copy
removeNonAlpha('Hello123!'); // 'Hello'
Removes all non-alphabetical characters from a string.