S
Supra
How do i parse the first nick before exclamation only. i am working
on irc chat similar to PIRCH or MIRC. I can only do this in vb6
here is debug.writeline:
[email protected] PRIVMSG #india :any1
seen a-kash?
eLif^^`[email protected] JOIN #india
Dim str As String = "[email protected]
PRIVMSG #india :any1 seen a-kash?"
Dim intI As Integer = str.IndexOf("!")
str = str.Substring(intI - 6)
TextBox1.AppendText(str)
i can't get nick name. i need first nick Picota , etc.
on irc chat similar to PIRCH or MIRC. I can only do this in vb6
here is debug.writeline:
[email protected] PRIVMSG #india :any1
seen a-kash?
eLif^^`[email protected] JOIN #india
Dim str As String = "[email protected]
PRIVMSG #india :any1 seen a-kash?"
Dim intI As Integer = str.IndexOf("!")
str = str.Substring(intI - 6)
TextBox1.AppendText(str)
i can't get nick name. i need first nick Picota , etc.