uniStrToLower()

Changes a string to lowercase.

Synopsis

string uniStrToLower(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 is returned.

Errors

Missing or illegal arguments.

Description

Changes a string to lowercase.

Example

main()
{
  string LC;
  LC=uniStrToLower(UC);
  DebugN("Converted lower-case string:", LC);
}

Assignment

Strings

Availability

CTRL