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