com.livecode.string

Typemodule
DictionaryLCB
LibraryLiveCode Builder
Associationscom.livecode.string
Summary

This library consists of the operations on strings included in the standard library of LiveCode Builder.

Description

This library consists of the operations on strings included in the standard library of LiveCode Builder.

TypeNameSummarySyntax
expressionEmptyString

Designates the string of length zero.

the empty string

modulecom.livecode.string

This library consists of the operations on strings included in the standard library of LiveCode Builder.

the empty string

operatorConcatenateStrings

Concatenates Left and Right.

<Left> & <Right>

- - -ConcatenateStringsWithSpace

Concatenates Left and Right with a space between.

<Left> && <Right>

- - -LowercaseString

Lowercases Source.

the lower of <Source>

- - -StringIsGreaterThanString

Determines whether Left is greater than Right under a char by char comparison

<Left> > <Right>

- - -StringIsLessThanString

Determines whether Left is less than Right under a char by char comparison

<Left> < <Right>

- - -StringIsNotString

Determines whether Left and Right are equal or not.

<Left> is not <Right>

- - -StringIsString

Determines whether Left and Right are equal or not.

<Left> is <Right>

- - -UppercaseString

Uppercases Source.

the upper of <Source>

statementPutStringAfter

Appends Source to Target.

put <Source> after <Target>

- - -PutStringBefore

Prepends Source to Target.

put <Source> before <Target>

- - -ReplaceString

Replaces occurrences of Pattern within Target in Replacement Source:An expression which evaluates to a string.

replace <Pattern> with <Replacement> in <Target>