Removes all numeric digits from a string.
The string to process.
The string without digits.
removeNumbers("abc123"); // "abc"removeNumbers("2025 is the year"); // " is the year" Copy
removeNumbers("abc123"); // "abc"removeNumbers("2025 is the year"); // " is the year"
1.2.0
Removes all numeric digits from a string.