‎2007 Feb 23 9:57 AM
Hi,
How to display a word with a single quatation . that is eg ' abab '.
The quotation marks are not getting displayed while using the write statement.
thanks,
sowmya.
‎2007 Feb 23 10:05 AM
Hi.
I'm not sure if I understand your question right. But if you want to display single quotes with ABAP you normally have to mark them as special characters using a leading single quote. For example:
write: / 'abap'.
leads to
abapwrite: / '''abap'''.leads to
'abap'I hope that answers your question.
Best regards,
Jan
PS:
As this question is not specific to the platform you are using I will move it to the ABAP-Forum if you don't mind.
‎2007 Feb 23 10:05 AM
Hi.
I'm not sure if I understand your question right. But if you want to display single quotes with ABAP you normally have to mark them as special characters using a leading single quote. For example:
write: / 'abap'.
leads to
abapwrite: / '''abap'''.leads to
'abap'I hope that answers your question.
Best regards,
Jan
PS:
As this question is not specific to the platform you are using I will move it to the ABAP-Forum if you don't mind.