Skip to main content
Version: Streamsheets 2.5

MID

Return the given amount of characters starting at the given index from a string.

Syntax

=MID(Text, Index, Count)

Arguments

NameDescription
TextText to extract string from.
IndexIndex to start extracting from.
CountNumber of characters to extract.

Return

The text that that is extracted from the given text using the arguments.

Examples

FormulaResultComment
=MID("SampleText", 3, 2)
"pl"