Procedure UprString converts all characters in the specified string to upper case.
PROCEDURE UprString(VAR str : DYNARRAY[] of CHAR);def vs.UprString(str):
return str| Name | Type | Description |
|---|---|---|
| str | DYNARRAY[] of CHAR | Source string. |
revisedString := 'vectorworks';
UprString(revisedString);
{Sets revisedString equal to 'VECTORWORKS'}Availability: from All Versions