In VB, it let you set strings with quotes in them by replacing double quotes with a single quote instead of using it to end the string
ie:
tempstr = "Hello ""world"", how it it?"
text value is Hello "world", how it it?
or
tempstr = "Hello ""world"""
text value is Hello "world"
ie:
tempstr = "Hello ""world"", how it it?"
text value is Hello "world", how it it?
or
tempstr = "Hello ""world"""
text value is Hello "world"