Info
\
FAQ
Cover
\
Exhibition
\
Learning
\
Reference
\
I/O board
\
Download
\
Discourse
\
Contribute
Language
\
Libraries
\
Environment
\
Electronics
\
Comparison
\
Troubleshooting
String
The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Class
String
Name
toUpperCase()
Examples
String str1= "Rabbit"; str1.toUpperCase(); Serial.println(str1); // Prints RABBIT
Description
Converts all of the characters in the string to uppercase. For example, "abc" will convert to "ABC".
Syntax
toUpperCase()
Returns
String
Usage
Web & Application