‎2007 Sep 13 12:21 PM
Guru's,
Plz suggest?
abc = '?
how to pass this?
Thanks in advance,
Pooja
‎2007 Sep 13 12:23 PM
‎2007 Sep 13 12:29 PM
‎2007 Sep 13 12:34 PM
hi Pooja,
instead of using single quote u can use the symbol beside numeric number one ( ` ) both looks similar only.
thanks.
‎2007 Sep 13 12:54 PM
HI,
DEfine it like this:
DATA: w_c(2) value '''?'.
I hope this helps,
Regards
Raju Chitale
‎2007 Sep 14 4:39 AM
‎2007 Sep 13 12:36 PM
Hi,
data: value(10).
value = '''?'.
write:/ value.
Regards
Sudheer
‎2007 Sep 13 12:39 PM
hi,
if u give like value = '''?'.
then it will show an syntax error because after double qouote it will treat as a single line comment.
thanks
‎2007 Sep 13 1:13 PM
Hi pooja,
For passing one single quote ( ' ) U need to use 2 single quotes.
<b>abc = ''''.</b>
Please Reffer the Program.
<b>Report zq.
data : var(3) type c.
var = '''?'.
write : 'Value of var = ' , var.</b>
<b>write : ' Var''s is Variable'.</b>
<b><REMOVED BY MODERATOR></b>
Regards,
LIJO JOHN
Message was edited by:
Alvaro Tejada Galindo
‎2007 Sep 14 4:38 AM