Returns a substring defined by offset and length.

Usage

Mid(string, start, \[length\])

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

Mid(β€œJohn Doe”, 4, 10)

  • Returns β€œn Doe”

Mid(β€œJohn Doe”, 2, 2)

  • Returns β€œoh”

Mid(β€œMia”, 4)

  • Returns β€œβ€, an empty string.

Related resources