DeltaWolf7
Well-known member
- Joined
- Jan 21, 2006
- Messages
- 47
- Programming Experience
- Beginner
If i have a list of string like this;
000.000.000.000 <1 space> www.msn.com
000.000.000.001 <3 spaces> www.something.net
000.000.000.002 <2 spaces> www.new.co.uk
000.000.000.003 <3 spaces> www.new.co.uk
ETC. Note the space are actual spaces in the real thing, the number showing how many between ip and hostname.
How can I split these up so that I can make a word list from them?
I would like the output to be something like this;
msn|1
something|1
new|2
ETC, plus the number of time they occured seperated someway.
I made a program to do this in Visual DialogScript, but in vb.net it seems to be complicated to me.
Thank you
000.000.000.000 <1 space> www.msn.com
000.000.000.001 <3 spaces> www.something.net
000.000.000.002 <2 spaces> www.new.co.uk
000.000.000.003 <3 spaces> www.new.co.uk
ETC. Note the space are actual spaces in the real thing, the number showing how many between ip and hostname.
How can I split these up so that I can make a word list from them?
I would like the output to be something like this;
msn|1
something|1
new|2
ETC, plus the number of time they occured seperated someway.
I made a program to do this in Visual DialogScript, but in vb.net it seems to be complicated to me.
Thank you