Feb 15, 2005 #1 lytus MIS Jun 17, 2004 48 US Hi all, I need to put a " in a string. So I need something like: varTemp = "This is an "EXAMPLE" of what I need!" Make sense? How do I do this?
Hi all, I need to put a " in a string. So I need something like: varTemp = "This is an "EXAMPLE" of what I need!" Make sense? How do I do this?
Feb 15, 2005 #2 pkailas Programmer Jun 10, 2002 555 US Code: varTemp = "This is an " & chr(34) & "Example" & chr(34) & " of what I need!" Upvote 0 Downvote
Feb 15, 2005 #3 PHV MIS Nov 8, 2002 53,708 FR Another way: varTemp = "This is an ""EXAMPLE"" of what I need!" Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Another way: varTemp = "This is an ""EXAMPLE"" of what I need!" Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Feb 15, 2005 #4 pkailas Programmer Jun 10, 2002 555 US PHV.. showoff! lol. Don't you have anything better to do? <wink> Upvote 0 Downvote