mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Initial mobile website check in
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user