Double quotes in string

Question: In C++ I can write aa = "aaaaa\"vvvvv" - string with double quotes

How can I write that in ABAP ???

Answer:
data w_string(30) type c.

Move 'This has " double quotes " in it....' to w_String.

Write :/ w_String.
_________________
Regards

R


Abap KC
SFMDR

Answer:
Ok thkx

then how solve that
aa = 'aaaaa\'vvvvv' - single quote????

Answer:
Data w_String(40) type c.

Move 'This has '' a single quote in it.....' to w_String.

Write :/ w_String.


_________________
Regards

R


Abap KC
SFMDR

Answer:
Thanks a lot
Copyright ?2007 - 2008 www.jt77.com