ABAP Keyword Documentation → ABAP − Short Reference
SPLIT - Short 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 up a character- or byte string dobj
.
Additions
-
AT sep
Specifies the separation sequencesep
in which the split will take place. -
INTO { {result1 result2 ...} | {TABLE result_tab}
}
Specifies the target fields either as a listresult1 result2 ...
or as lines of the internal tableresult_tab
. -
IN {CHARACTER|BYTE} MODE
Defines character- or byte string processing.