Difference between revisions of "String.lower"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Available since:''' Gideros 2011.6<br/>
=== <translate>Description</translate> ===
+
'''Class:''' [[string]]<br/>
<translate>Receives a string and returns a copy of this string with all uppercase letters changed to lowercase. All other characters are left unchanged. The definition of what an uppercase letter is depends on the current locale.</translate>
+
 
<source lang="lua">
+
=== Description ===
 +
Receives a string and returns a copy of this string with all uppercase letters changed to lowercase. All other characters are left unchanged. The definition of what an uppercase letter is depends on the current locale.
 +
<syntaxhighlight lang="lua">
 
(string) = string.lower(s)
 
(string) = string.lower(s)
</source>
+
</syntaxhighlight>
=== <translate>Parameters</translate> ===
+
 
'''s''': (string) <translate>string to modify</translate> <br/>
+
=== Parameters ===
=== <translate>Return values</translate> ===
+
'''s''': (string) string to modify<br/>
'''<translate>Returns</translate>''' (string) <translate>lowercased string</translate><br/>
+
 
 +
=== Return values ===
 +
'''Returns''' (string) lowercased string<br/>
 +
 
 +
{{String}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: string

Description

Receives a string and returns a copy of this string with all uppercase letters changed to lowercase. All other characters are left unchanged. The definition of what an uppercase letter is depends on the current locale.

(string) = string.lower(s)

Parameters

s: (string) string to modify

Return values

Returns (string) lowercased string