1Prelude.toUpper(3kaya) Kaya module reference Prelude.toUpper(3kaya)
2
3
4
6 Prelude::toUpper - Returns a copy of the string with all letters upper-
7 cased
8
10 String toUpper( String s )
11
13 s The string to upper-case
14
16 Returns a copy of the string with all letters upper-cased
17
18
19 s = toUpper("Hello World!");
20 // s = "HELLO WORLD!"
21
22 This function may give unusual results with non-ASCII characters.
23
25 Kaya standard library by Edwin Brady, Chris Morris and others
26 (kaya@kayalang.org). For further information see http://kayalang.org/
27
29 The Kaya standard library is free software; you can redistribute it
30 and/or modify it under the terms of the GNU Lesser General Public
31 License (version 2.1 or any later version) as published by the Free
32 Software Foundation.
33
35 Prelude.toLower_1 (3kaya)
36 Prelude.toUpper (3kaya)
37
38
39
40Kaya December 2010 Prelude.toUpper(3kaya)