ToUpper()
From ElectronicWar
| Function information for toUpper() | |
| Function | toUpper() |
| Parameters | (string) |
| API | All |
| Cost | $0 |
| Level | N/A |
| CPU Usage | 0 |
| Description | Converts the string passed as a parameter into upper case. |
[edit] Challenge Script Example
lineStr = "Hello, world."; upperStr = toUpper(lineStr); }
Output: upperStr = "HELLO, WORLD"

