convert_text_to_camelcase
Convert text to camelCase format. Transforms phrases and hyphenated words into a single camelCase string, e.g., 'my-variable-name' becomes 'myVariableName'.
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 |