I want to remove any numbers from the end of a string, for example:
"TestUser12324" -> "TestUser"
"User2Allow555" -> "User2Allow"
"AnotherUser" -> "AnotherUser"
"Test123" -> "Test"
etc.
Anyone know how to do this with a regular expression in Java?