Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Concatenate 2 strings in ABAP without using CONCATENATE function
In ABAP you can use && sign to concatenate variables as below
Data
hello TYPE string, world TYPE string, helloworld TYPE string. hello = 'hello'. world = 'world'. helloworld = hello && world.
If you want to concatenate strings directly, you can use
helloworld = 'hello' && 'world'.
If you want to keep space in between, you would require ` symbol as below
helloworld = hello && ` and ` && world
Advertisements
