D DaveF Apr 7, 2004 #1 sInput = sInput.Replace(""", "") No accesable replace accepts this number of arguements error????
N Nicole Calinoiu Apr 7, 2004 #2 Dave, The problem lies with the way you are specifying a double-quote character in the first argument, which is really resulting in an unterminated string. Try this instead: C#: sInput = sInput.Replace("\"", "") VB: sInput = sInput.Replace("""", "") HTH, Nicole
Dave, The problem lies with the way you are specifying a double-quote character in the first argument, which is really resulting in an unterminated string. Try this instead: C#: sInput = sInput.Replace("\"", "") VB: sInput = sInput.Replace("""", "") HTH, Nicole