String library ​
No description available
Functions ​
- Returns a character at the index of the string
- Looks for a substring within the first string
- Returns the n-th first characters of the string
- Returns the length of a string
- Returns the lower case copy of the string
- Replaces the given character(s) with the replacement
- Returns the string in reverse
- Returns the n-th last characters of the string
- Returns an array of strings split by the given delimiter.
mnscript
bool String.StartsWith(string, string)
- Returns whether the first string begins with the second string
- Returns a substring of from the start to end index
- Trims blank space from either side of the string
- Trims blank space from the left of the string
- Trims blank space from the right of the string
- Returns the upper case copy of the string