convert_text_to_camelcase
Converts text to camelCase by removing spaces and special characters, capitalizing each word after the first. Useful for programming variable names.
Instructions
Convert text to camelCase format. Example: 'hello world' → 'helloWorld', 'my-variable-name' → 'myVariableName'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to convert to camelCase |