Mid
Returns a substring defined by offset and length.
Usage
string (required) The string to extract a substring from.
start (required) The index of the first letter of the extracted substring. The first character of the given string is treated as having index 1.
length (optional) The length of the segment to extract. If length is not given, or if the provided length is longer than the remaining source string, the total remaining string will be returned.
Example
Returns “n Doe”
Returns “oh”
Returns “”, an empty string.
Last updated
Was this helpful?