View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ExcelMonkey ExcelMonkey is offline
external usenet poster
 
Posts: 553
Default How do you look for quote marks?

Normally when you you pass a character to a variable character you pass it
within in quotes:

stringvar = "g" or
stringvar = "book"

How do you define a quote itself. So if I want to look for ", can I define
it as a quote character with actaul quotes (i.e. """) ?

stringvar = """

Thanks