root/trunk/tests/chars.md
| Revision 170, 207 bytes (checked in by JarrettBillingsley, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | module tests.chars; |
| 2 | |
| 3 | local c = 'h'; |
| 4 | c.toLower(); |
| 5 | c.toUpper(); |
| 6 | c.isAlpha(); |
| 7 | c.isAlNum(); |
| 8 | c.isLower(); |
| 9 | c.isUpper(); |
| 10 | c.isDigit(); |
| 11 | c.isCtrl(); |
| 12 | c.isPunct(); |
| 13 | c.isSpace(); |
| 14 | c.isHexDigit(); |
| 15 | c.isAscii(); |
Note: See TracBrowser for help on using the browser.
