<?xml version="1.0" encoding="UTF-8"?><api:function-page xml:base="/apidoc/8.0/fn.lowerCase.xml" generated="2015-10-07T16:36:00.016766-07:00" mode="javascript" xmlns:api="http://marklogic.com/rundmc/api"><api:function-name>fn.lowerCase</api:function-name><api:suggest>fn.lowercase</api:suggest><api:suggest>fn</api:suggest><api:suggest>lowercase</api:suggest><api:function-link mode="xquery" fullname="fn:lower-case">/apidoc/8.0/fn:lower-case.xml</api:function-link><api:function mode="javascript" name="lowerCase" type="builtin" lib="fn" category="StringBuiltins" bucket="W3C-Standard Functions" hidden="false" prefix="fn" namespace="http://www.w3.org/2005/xpath-functions" fullname="fn.lowerCase"><api:summary>
Returns the specified string converting all of the characters to lower-case
characters.  If a character does not have a corresponding lower-case character,
then the original character is returned. The lower-case characters are
determined using the <a href="http://www.unicode.org/unicode/reports/tr21/" xmlns="http://www.w3.org/1999/xhtml">Unicode Case Mappings</a>.
</api:summary><api:params><api:param name="string" type="xs:string?"><api:param-description>
  The string to convert.
  </api:param-description><api:param-name>string</api:param-name><api:param-type>String?</api:param-type></api:param></api:params><api:return>String?</api:return><api:example class="javascript"><pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml">
fn.lowerCase("aBCD");

=&gt; abcd 
</pre>
</api:example></api:function></api:function-page>