abap 转义字符 ‘
时间: 2023-08-08 12:11:08 浏览: 406
ABAP字符串SQL Functions语法总结
ABAP 中的转义字符是 '\'。所以,如果你想在 ABAP 中使用单引号 ',你可以使用 '\' 来转义它,如下所示:
```abap
DATA lv_text TYPE string.
lv_text = 'This is a single quote: \''.
WRITE lv_text.
```
这样会输出:This is a single quote: '
阅读全文