We know that VB string start and end with double quotes " "

So we have to use "" if we want " in VB string.

I wonder if there is a regular expression pattern which will match VB string?.

link|improve this question

67% accept rate
What are you trying to accomplish here? String values in Visual Basic do not begin nor end with double-quotes, although double-quotes may be part of a string. Any value in an application can be converted to a string. – HardCode Mar 15 '09 at 15:09
Is this VB6 or VB.Net? – JaredPar Mar 15 '09 at 15:12
feedback

2 Answers

up vote 1 down vote accepted

Are you trying to detect if the string they entered would be valid if typed into a VB code file? If so the following regular expression should do the trick

^"(("")|[^"])*"$
link|improve this answer
feedback

What is the context here? You only need to escape quotes to let the compiler distinguish between start/end quotes and quotes which are part of the string data. If the string is read during runtime there's no need for double quotes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.