08-22-2013, 04:31 PM
You can use REPLACE Built-In Function of Vbscript. Below is the script.
A(0) = "What is the first name of your oldest nephew?"
B(0) = Replace(A(0),"?","")
Msgbox B(0)
A(0) = "What is the first name of your oldest nephew?"
B(0) = Replace(A(0),"?","")
Msgbox B(0)