uniStrToUpper()

Converts a lower-case string to a string in capital letters.

Synopsis

string uniStrToUpper(string text);

Parameters

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

Return value

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

Errors

Missing or illegal arguments.

Description

Converts a lower-case string to a string in capital letters.

Example

main()
{
  /* uniStrToUpper converts a lower-case string to a string in
  capital letters */
  string LCString = "String";
  string UC;
  UC = uniStrToUpper(LCString);
  DebugN("Converted string in capital letters:", UC);
}

Assignment

Strings

Availability

CTRL