toLower()
From Hack Wars Wiki
| Information for free function toLower() | |
| Function | toLower(string s) |
| API | Attacking, Banking, FTP, Watch, HTTP |
| Description | Returns a lower case version of the string provided. |
Challenge Script Example
string lineStr = "HELLO, WORLD."; string lowerStr = toLower(lineStr); setOutputString(lowerStr); |
Output:
"hello, world."
