在 ABAP 中连接两个字符串(不使用 CONCATENATE 函数)


在 ABAP 中,你可以使用 && 符号来连接以下变量

数据

hello TYPE string,
world TYPE string,
helloworld TYPE string.
hello = 'hello'.
world = 'world'.
helloworld = hello && world.

如果你想直接连接字符串,你可以使用

helloworld = 'hello' && 'world'.

如果你想在中间保持空格,你需要 ` 符号,如下所示

helloworld = hello && ` and ` && world

更新于:2020 年 2 月 14 日

3K+ 浏览

开启您的职业生涯

完成课程,获得认证

入门
广告