Files
processing4/web/reference/API/String_toLowerCase.xml
2005-01-27 06:48:42 +00:00

49 lines
771 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>toLowerCase()</name>
<category>String</category>
<subcategory>Method</subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
String str1 = "CCCP";
String str2 = "Rabbit";
str1 = str1.toLowerCase();
str2 = str2.toLowerCase();
println(str1 + ":" + str2); // Prints cccp:rabbit
</code>
</example>
<description>
Converts all of the characters in the string to lowercase. For example, "ABC" will convert to "abc".
</description>
<syntax>
toLowerCase()
</syntax>
<parameter>
<label></label>
<description></description>
</parameter>
<returns>String</returns>
<related>
</related>
<availability>1.0</availability>
<type>Method</type>
<partof>Core</partof>
</root>