-
Notifications
You must be signed in to change notification settings - Fork 2
_tolower
bergsma edited this page Sep 26, 2014
·
3 revisions
#tolower
###Convert to lowercase.
Syntax
result = tolower data ;
Arguments
- list data
Converts all strings in the list to lowercase.
Return Value
list result
- lowercased : The list, with strings converted to lowercase.
The STATUS variable is set to $ACKNOWLEDGE
When the argument is an array variable, all the elements in the array are converted, and the result will be a list array list result
- lowercased : The list, with strings converted to lowercase.
The STATUS variable is set to $ACKNOWLEDGE
When the argument is an array variable, all the elements in the array are converted, and the result will be a list array
Exceptions
-
%ARGUMENT: Invalid arguments. Usage: result = tolower data ;
-
%BOUNDS: Subscript is out of bounds in tolower()
Description
str s = tolower ( "abc" ) ; /* s contains "ABC" */
Examples
puts "Create an example for the function 'tolower'" ;
Related Links
None