Code:
Dim reg As System.Text.RegularExpressions.Regex
Me.lblAnswer.Text = System.Text.RegularExpressions.Regex.Replace(lblAnswer.Text, ".", "*")
Okay, so the "." is supposed to convert everything BUT line breaks. Well it converts line breaks as well... how to change so it does not replace line breaks with "*"?