CalcIt Commands

MID(Expr, start, size=rest of Expr)

Returns a part of Expr starting at start for size characters. If size is omitted then all characters until the end of Expr are assumed.

MID(ArrExpr, start, size=rest of Arr)

Returns a part of ArrExpr starting at start for size elements. If size is omitted then all elements after start (including the element at start) are assumed. It is used in array expressions.

Go Back