Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 575 Bytes

File metadata and controls

37 lines (28 loc) · 575 Bytes

UprString

Description

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

Parameters

Name Type Description
str DYNARRAY[] of CHAR Source string.

Examples

==== VectorScript ====

revisedString := 'vectorworks';
UprString(revisedString);
{Sets revisedString equal to 'VECTORWORKS'}

==== Python ====

Version

Availability: from All Versions

Category

  • Strings