在 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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP