Escape sequences
-
How could i use escape sequences in VB to write strings like this: 'a1 "b1" c1' - where ' is a substitute for " ? rechi
In VB you could use two double quotes back-to-back... "a1 ""b1"" c1" ...or use the actual ASCII/ANSI char itself... "a1 " & Chr(34) & "b1" & Chr(34) & " c1" I prefer the first method. Jeremy L. Falcon Homepage : Sonork = 100.16311
"But everybody darlin' sometimes bites the hand that feeds." "Remember in this game we call life that no one said it's fair." "Just because you're winnin' don't mean you're the lucky ones." Song: Breakdown - Album: Use Your Illusion II - Artist: Guns N' Roses -
How could i use escape sequences in VB to write strings like this: 'a1 "b1" c1' - where ' is a substitute for " ? rechi
Heya, " is escaped by "" (ie double 'em). /WW