PDA

View Full Version : How to send a string with another string inside it?



financecatalyst
- 13th May 2011, 14:34
I need a little help to send a string which has another string inside it:

Example :
HSEROUT ["She said "Hello""]

I have tried many ways to do it but no luck.

HenrikOlsson
- 13th May 2011, 15:36
Hi,
Perhaps something like this:

HSEROUT ["She said", 34, "Hello", 34]
34 is the ASCII code for " so the resulting should string should be what you want.

/Henrik.

financecatalyst
- 13th May 2011, 17:11
Hi,
Perhaps something like this:

HSEROUT ["She said", 34, "Hello", 34]
34 is the ASCII code for " so the resulting should string should be what you want.

/Henrik.

Thanks. Problem solved :)