hi Guys
string is:
":USERNAME![email protected] PRIVMSG #Channel :Hello World"
i need to split the string to show
USERNAME:Hello World
im currently using the below
Dim Msg As String
Msg = Split(Data, " PRIVMSG " & Channel & " :")(1)
which returns
USERNAME:
and no hello world what am i doing wrong here? ive done this a million times in the past
string is:
":USERNAME![email protected] PRIVMSG #Channel :Hello World"
i need to split the string to show
USERNAME:Hello World
im currently using the below
Dim Msg As String
Msg = Split(Data, " PRIVMSG " & Channel & " :")(1)
which returns
USERNAME:
and no hello world what am i doing wrong here? ive done this a million times in the past
