Mid()

Teil einer Zeichenkette ab einer bestimmten Positon mit bestimmter Länge zurückliefern.

Syntax: string = Mid( Source as string, Position as byte[, Length as byte] )

Beispiel:

  dim s as string
  s = Mid("Hallo Welt",3,3)  ' Ergebnis: "llo"