Serial.print and map character

Hello.
I try to communicate with Xively and to do so I have to send stings in JSON format through the serial hardware port USART (connected to a WiFly RN171).
String:
{"method":"get","version":"1.0.0","resource" : "/feeds/73205","headers" :{"X-ApiKey":"myPassword"}}

As I cannot put the " character into a string I suppose the only way is to write:
{$method$:$get$, $version$:$ .... // replacing the " with a $ and then while printing mapping the $ to ".

I suppose I would have to edit the print Class or is there an other, easier way to do this?
Thanks Martin

You can put a " in a string quite easily - by using the escape character \

String myString = "Here is a quote: \" and it works.";

Or you can just print the quote marks if that is what you want.

  Serial.println("\"hello\"");

super, thanks.