mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
49 lines
771 B
XML
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 & 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>
|