Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Dim LString As String

Dim LArray() As String

LString = "TechOnTheNet.com"
LArray = Split(LString, ".")

MsgBox LArray(0)
MsgBox LArray(1)

You might also like