To lower case: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
Created page with '{{ #vardefine:name|to_lower_case}}{{ #vardefine:return_type|string}}{{ FunctionPage| name={{#var:name}}| function_category=String Handling Routines| function1={{Function| name=…'
 
imported>Bale
RFI Answered
Line 16: Line 16:
}}|
}}|


function_description=Converts all upper-case alphabetic characters (A-Z) found in {{pspan|text}} to their lower-case equivalents (a-z) and returns the resulting string.|
function_description=Converts all upper-case alphabetic characters (A-Z) found in {{pspan|text}} to their lower-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_upper_case}}|
see_also={{SeeAlso|to_upper_case}}|
}}
}}
{{RFI|Does this have any effect on accented / tilded characters?}}

Revision as of 09:13, 28 April 2010

Function Syntax

string to_lower_case(string text )

  • text is the original string

Converts all upper-case alphabetic characters (A-Z) found in text to their lower-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 "shouted" text into easier-to-read text.

string s = "HI I AM A NIGERIAN PRINCE, WOULD YOU LIKE 1 MILLION US DOLLAR?";
s = to_lower_case(s);
print(s);

Returns:

hi i am a nigerian prince, would you like 1 million us dollar?

See Also

to_upper_case()