toUpper()
From Hack Wars Wiki
| Information for free function toUpper() | |
| Function | toUpper(string s) |
| API | Attacking, Banking, FTP, Watch, HTTP |
| Description | Returns an upper-case version of the string provided. |
Challenge Script Example
string lineStr = "Hello, world."; string upperStr = toUpper(lineStr); setOutputString(upperStr); |
Output:
"HELLO, WORLD."
For more info, see setOutputString().
