Strings
Auxiliary functions for String types.
Trim
MTools.String.Trim(string);
Name
Type
Description
string
string
String/Word
Allows you to cut off unnecessary skips at the beginning and at the end. Example usage:
FirstUpper
MTools.String.FirstUpper(string);
Name
Type
Description
string
string
String/Word
Allows you to make the first letter of a line large. Example usage:
FirstLower
MTools.String.FirstLower(string);
Name
Type
Description
string
string
String/Word
Allows you to make the first letter of a line small.
Example of use:
Cut
MTools.String.Cut(string, number);
Name
Type
Description
string
string
The line that needs to be trimmed
number
number
If positive, then from the beginning; if negative, then from the end
Allows you to trim a line.
Example of use:
Last updated