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

49 lines
815 B
XML

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