在 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
广告