strtolower()

Changes a string to lowercase.

Synopsis

string strtolower(string text);

Parameters

Parameter Description
text Text, which is to be changed to lowercase

Return value

In the event of an error an empty string. If the function is executed successfully, the changed string will be returned.

Error

Missing or illegal arguments.

Description

Changes a string to lowercase.

Example

main()
{
  string text;
  text=strtolower("THIS TEXT CHANGES TO LOWERCASE");
  DebugN(text); // this text changes to lowercase
}

Assignment

Strings

Availability

CTRL