如何在不使用 CONCATENATE 函数的情况下在 ABAP 中连接 2 个字符串
在 ABAP 中,您可以使用符号 && 连接变量,如下所示
数据
hello TYPE string, world TYPE string, helloworld TYPE string. hello = 'hello'. world = 'world'. helloworld = hello && world.
如果您想直接连接字符串,可以使用
helloworld = 'hello' && 'world'.
如果您想在两者之间保留空格,您可以使用符号 `,如下所示
helloworld = hello && ` and ` && world
广告