Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: ColdFire on September 25, 2003, 07:32 PM

Title: Replace() Function
Post by: ColdFire on September 25, 2003, 07:32 PM
Im making a '1337 text converter' on my bot. Im trying to make it with the
Replace() function, replacing certain characters with others went the message is sent...any ideas on how I can do this easilly?


VB NoobAss Out :P
Title: Re:Replace() Function
Post by: ______ on September 25, 2003, 08:05 PM

dim msg as string
msg = "im kewl"
msg = replace(msg, "kewl", "Cool")


i think thats how replacing is done.