removeDigitsAtEnd.Rd
This function removes any digits occurring at the end of a given string.
removeDigitsAtEnd(string)
The input string from which digits are to be removed
The modified string with digits removed from the end
removeDigitsAtEnd("abc123") # Output: "abc" #> [1] "abc" removeDigitsAtEnd("xyz") # Output: "xyz" #> [1] "xyz"