5 pts.
 double quotes with InStr method
how to identify a string with double quotes using the InStr method in vb

Software/Hardware used:
ASKED: March 5, 2009  6:11 PM
UPDATED: March 5, 2009  8:10 PM

Answer Wiki:
Hi, You can use the chr() method to find "", which uses the ascii character table. I've written the code for finding double quotes, you can use this method for any special characters. InStr(1, String, Chr(34) & Chr(34)) Hope this helps, Dustin
Last Wiki Answer Submitted:  March 5, 2009  7:01 pm  by  RoadDust   390 pts.
All Answer Wiki Contributors:  RoadDust   390 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Thanks Dustin. I’m going to try that out.

 485 pts.