Hi all,

How do you extract part of a string? I.e.

[code]
Dim LongString as string
Dim ShortString as String

LongString = "iounfdhvg9oi35ih7ns98ohf9h0p8hef"

<Code to take the long string, and select the first 5 characters of it>

ShortString = <Newly snipped string>

MsgBox ShortString

(In message box)
iounf


Any ideas?