Seiki Batch Script > String Functions

$lower

Returns a copy of a string converted to lowercase

Class: String

Parameters: $string – String to convert

Syntax: $returnString=$lower($string)

Returns: A string in lowercase

Remarks: None

Example:

//Example for the string $lower method

$s=”SEIKI BATCH SCRIPT” //Set string

$result=$lower($s) //Result (= ‘seiki batch script’)

message(“Lower case of string “ + $s + “ is “ + $result) //Display results message

 

See Also:    $upper