Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 602 Bytes

File metadata and controls

36 lines (28 loc) · 602 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