Textparsing under VB.NET

Psy

Newcomer
Joined
Dec 17, 2002
Messages
2
i wrote a programm that opens a textfile and puts it into a stream, now i can do things like modifying:

OUTBUF = OUTBUF.Replace("ende", "finish")

but now i want it to change this:

Name=Psy 123

to this:

Name="Psy 123"


but i have no clue how i could do this, i'm using vb.net
hope i postet in the right forum, if not sorry for that

mfg Psy
 
Name=Psy 123... Is this some text coming for the file?

Do you want the Name to be seen as a variable and the Psy 123 to be seen as a value?
 
no you rightlick on for example your desktop choose new -> textfile type something in it like:

text blahblah Name=Psy blahblah text goes on...

and save it, then i want my programm just like the example on the top with ende -> finish, to modify the Name=Psy to Name="Psy" in my buffer/stream
 
Back
Top