Skip to content

_tolower

bergsma edited this page Sep 26, 2014 · 3 revisions

#tolower

###Convert to lowercase.

Syntax

result = tolower data ;

Arguments

  1. 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

Clone this wiki locally