Convert any phrase into a URL-friendly kebab-case string.
Constraints
Example
>>> to_kebab_case("Hello World")
'hello-world'
>>> to_kebab_case("camelCase")
'camel-case'
>>> to_kebab_case("---strip--me---")
'strip-me'
>>> to_kebab_case("")
''
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints