Frequently Asked Questions
What does this tool do?
This tool converts text to kebab-case, lowercasing all words and joining them with hyphens.
Can I process long strings?
Yes. Performance depends on your browser and device memory.
Does this tool store my input text?
No. Input text remains in your browser session.
Example input/output
Input: Hello World fooBar
Output: hello-world-foo-bar
How it works
This tool inserts hyphens before uppercase letters, splits on non-alphanumeric characters, lowercases all parts, and joins with hyphens. Processing runs in your browser.
Common use cases
- Convert titles or names to kebab-case for URL slugs
- Transform camelCase variable names to kebab-case CSS class names
- Normalise identifiers to kebab-case for file naming conventions