com.livecode.string | |
Type | module |
Dictionary | LCB |
Library | LiveCode Builder |
Associations | com.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. |
Type | Name | Summary | Syntax |
---|---|---|---|
expression | EmptyString | Designates the string of length zero. | the empty string |
module | com.livecode.string | This library consists of the operations on strings included in the standard library of LiveCode Builder. | the empty string |
operator | ConcatenateStrings | 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> |
statement | PutStringAfter | 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> |