Regular Expressions?

Mr.Mo

New member
Joined
Aug 6, 2006
Messages
1
Programming Experience
Beginner
Hi everyone;

I'm making a server and I want the data recieved in commands like this;

"<1>data</1>"

In Ruby I can take the Data like this;

if cmd == /<1>(.*)</1>/

$1 would be the variable holding the data.

Basily I want the strings between the tags.

How would I do this in VB.net?
 
Back
Top