.. _functx_camel-case-to-words: ========================== functx:camel-case-to-words ========================== Turns a camelCase string into space-separated words Description ~~~~~~~~~~~ The functx:camel-case-to-words function turns a camel-case string (one that uses upper-case letters to start new words, as in "thisIsACamelCaseTerm"), and turns them into a string of words using a space or other delimiter. .. list-table:: :widths: 40 60 :header-rows: 1 * - **Parameters** - **Description** * - arg:string() - the string to modify * - delim:string() - the delimiter for the words (e.g. a space) Examples ~~~~~~~~ .. list-table:: :widths: 50 50 :header-rows: 1 * - **XPath** - **Results** * - functx:camel-case-to-words('thisIsACamelCaseTerm',' ') - this Is A Camel Case Term * - functx:camel-case-to-words('thisIsACamelCaseTerm',',') - this,Is,A,Camel,Case,Term See Also ~~~~~~~~ .. toctree:: :titlesonly: :glob: * :ref:`functx_words-to-camel-case`.