i have this code to add spaces between some symbols in a text box


VB Code:
  1. With txtFileText
  2.         .Text = Replace(.Text, ">", " > ")
  3.         .Text = Replace(.Text, "<", " < ")
  4.         .Text = Replace(.Text, ".", " . ")
  5.         '.Text = Replace(.Text, """, " " ")
  6. End With


what should i change in the last replacment to let me add spaces for the symbol "