在不使用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