ABAP Keyword Documentation → ABAP - Quick Reference
SPLIT - Quick reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
SPLIT dobj AT sep INTO
{ {result1 result2 ...} | {TABLE result_tab} }
[IN {CHARACTER|BYTE} MODE].
Effect
Splits a character string or byte string dobj
.
Additions
-
AT sep
Specifies the separator sequencesep
where the split is made. -
INTO { {result1 result2 ...} | {TABLE result_tab} }
Specifies the target fields either as a listresult1 result2 ...
or as rows of the internal tableresult_tab
. -
IN {CHARACTER|BYTE} MODE
Specifies character string or byte string processing.