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

StringLower- Returns the string with the letters in lower case

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

- StringLower(S): string

Parameters:

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

Description:

Use the StringLower function to make a copy of it with all letters converted to lower case.

Examples:

// Creates a string variable with a few capital letters

S = "BiBlOS"

// Converts the entire string into lower case

T = StringLower(S)

// The variable T contains the string: biblos (all in lower case)

MsgBox(T)