.. _functx_words-to-camel-case: ========================== functx:words-to-camel-case ========================== Turns a string of words into camelCase Description ~~~~~~~~~~~ The functx:words-to-camel-case function turns a string composed of multiple words (e.g. 'this is a term") into a camel-case value (one that uses upper-case letters to start new words, e.g. "thisIsATerm". .. list-table:: :widths: 40 60 :header-rows: 1 * - **Parameters** - **Description** * - arg:string() - the string to modify Examples ~~~~~~~~ .. list-table:: :widths: 50 50 :header-rows: 1 * - **XPath** - **Results** * - functx:words-to-camel-case('this Is A Term') - thisIsATerm * - functx:words-to-camel-case('This is a term') - ThisIsATerm Depends On ~~~~~~~~~~ * :ref:`functx_capitalize-first`. See Also ~~~~~~~~ .. toctree:: :titlesonly: :glob: * :ref:`functx_camel-case-to-words`.