Skip to main content
1

πŸ—‘οΈ Removal & Extraction

String
Extracts all numerical digits from the string and returns them as a new string. All non-digit characters are removed.
String
Removes all numerical digits (0-9) from the string.
String
Removes all whitespace characters (spaces, tabs, newlines) from the string.
String
Removes words that begin with a number (e.g., β€˜3rd’, β€˜10users’) and cleans up extra spaces.
String
Extracts all individual words from the string based on word boundaries. Useful for keyword extraction.
2

πŸ›‘οΈ Validation

bool
Checks if the entire string consists only of numerical digits (0-9).
bool
Checks if the entire string consists only of alphabet letters (a-z, A-Z).
3

βœ‚οΈ Splitting

List<String>
Splits a string into a list of substrings whenever an uppercase letter is encountered. Ideal for converting PascalCase to readable words.

πŸ—‘οΈ Removal & Extraction

πŸ›‘οΈ Validation

βœ‚οΈ Splitting