Reference+
Name
upper()
Class
StringList
Description
Make the entire list upper case.
Examples
- StringList inventory; void setup() { size(200, 200); inventory = new StringList(); inventory.append("coffee"); inventory.append("tea"); inventory.append("flour"); println(inventory); inventory.upper(); println(inventory); }
Syntax
- .upper()
Return
- void

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.