To upper case: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>Slyz
m best code sample ever was using to_lower_case()
imported>Bale
Answered RFI.
Line 16: Line 16:
}}|
}}|


function_description=Converts all lower-case alphabetic characters (a-z) found in {{pspan|text}} to their upper-case equivalents (A-Z) and returns the resulting string.|
function_description=Converts all lower-case alphabetic characters (a-z) found in {{pspan|text}} to their upper-case equivalents (A-Z) and returns the resulting string. Characters with diacritic marks such as ñ and á will also be converted to uppercase letters such as Ñ and Á.|


code1={{CodeSample|
code1={{CodeSample|
Line 33: Line 33:
see_also={{SeeAlso|to_lower_case}}|
see_also={{SeeAlso|to_lower_case}}|
}}
}}
{{RFI|Does this have any effect on accented / tilded characters?}}

Revision as of 09:13, 28 April 2010

Function Syntax

string to_upper_case(string text )

  • text is the original string

Converts all lower-case alphabetic characters (a-z) found in text to their upper-case equivalents (A-Z) and returns the resulting string. Characters with diacritic marks such as ñ and á will also be converted to uppercase letters such as Ñ and Á.

Code Sample

Turns "normal" text into "loud" text.

string s = "hi i am a nigerian prince, would you like 1 million us dollar?";
s = to_upper_case(s);
print(s);

Returns:

HI I AM A NIGERIAN PRINCE, WOULD YOU LIKE 1 MILLION US DOLLAR?

See Also

to_lower_case()