The base path is
/tools/string-utils/*.String Utilities
| Name | Category | Tool Key | Path |
|---|---|---|---|
| Convert to uppercase | Case Conversion | to_uppercase | /tools/string-utils/to-uppercase |
| Convert to lowercase | Case Conversion | to_lowercase | /tools/string-utils/to-lowercase |
| Capitalize each word | Case Conversion | capitalize | /tools/string-utils/capitalize |
| Capitalize only first letter | Case Conversion | capitalize_first_letter | /tools/string-utils/capitalize-first-letter |
| snake_case → camelCase | Case Style Conversion | snake_to_camel | /tools/string-utils/snake-to-camel |
| camelCase → snake_case | Case Style Conversion | camel_to_snake | /tools/string-utils/camel-to-snake |
| Get string length | String Analysis | length | /tools/string-utils/length |
| Check substring presence | String Analysis | contains | /tools/string-utils/contains |
| Check prefix | String Analysis | starts_with | /tools/string-utils/starts-with |
| Check suffix | String Analysis | ends_with | /tools/string-utils/ends-with |
| Check palindrome | String Analysis | is_palindrome | /tools/string-utils/is-palindrome |
| Count substring occurrences | String Analysis | count_occurences | /tools/string-utils/count-occurences |
| Reverse string | String Modification | reverse_string | /tools/string-utils/reverse-string |
| Remove whitespace | String Modification | trim | /tools/string-utils/trim |
| Standardize whitespace | String Modification | normalize_whitespace | /tools/string-utils/normalize-whitespace |
| Replace all occurrences | String Modification | replace_all | /tools/string-utils/replace-all |
| Extract substring | String Modification | substring | /tools/string-utils/substring |
| Truncate with suffix | String Modification | truncate | /tools/string-utils/truncate |
| Repeat string | String Modification | repeat | /tools/string-utils/repeat |
| Remove special characters | String Modification | remove_non_alphanumeric | /tools/string-utils/remove-non-alphanumeric |
| Create URL slug | String Modification | slugify | /tools/string-utils/slugify |