DiGrande.it

Blind, Braille and Embossing Technologies

This site uses cookies to personalize content and ads, provide social media features and analyze links. By closing this banner or continuing to browse, you consent to their use.
Read the DiGrande.it Cookie Policy

StringUpper- Returns the string with all letters in upper case

Function that returns the string passed as parameter converting all the letters in upper case.

- StringUpper(S): string

Parameters:

- (string) S: string to convert all letters to upper case.

Description:

Use the StringUpper function to make a copy of it with all letters to upper case.

Examples:

// Creates a string variable with mixed letters

S = "BiBLos"

// Converts the entire string into uppercase letters

T = StringUpper(S)

// The variable T contains the string: "BIBLOS" (all in uppercase)

MsgBox(T)