Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Replace(Replace(Request.Form("myfield"),"$",""),".","")
Replace([i]string, value to replace, replacement value[/i])
Dim regex
Set regex = New regExp
regex.Global = True
regex.IgnoreCase = True
regex.pattern = "\$\."
Dim myString = "abcdefg$$$hij.kl.m$..etc"
Response.Write regex.Replace(myString,"")