```sh
var = kebobcase text
```
Converts the provided string into kebob case.
All non-alphanumeric characters are ignored.
The string to convert.
The converted string.
```sh
string = kebobcase "Hello, World!"
assert_eq ${string} "hello-world"
```