Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Visual Basic Help
lol weren't you learning python a while back?
and nah sorry, i'm really not very familiar with VB.
you could loop recursively through the string and only add characters that aren't . to a new string. in python it'd look like
string1 = "this.is.a.string.with.dots.in.it" string2 = "" for i in string1: [tb]if i != ".": [tb][tb]string2 += i print string2
EDIT: Gah it even deformats big lots of spaces. i'll put [tb] where there should have been tabs.