1
ποΈ Removal & Extraction
Extracts all numerical digits from the string and returns them as a new string. All non-digit characters are removed.
Removes all numerical digits (
0-9) from the string.Removes all whitespace characters (spaces, tabs, newlines) from the string.
Removes words that begin with a number (e.g., β3rdβ, β10usersβ) and cleans up extra spaces.
Extracts all individual words from the string based on word boundaries. Useful for keyword extraction.
2
3
βοΈ Splitting
Splits a string into a list of substrings whenever an uppercase letter is encountered. Ideal for converting
PascalCase to readable words.