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