Skip to content

ABAP Keyword Documentation →  ABAP - Quick Reference 

SPLIT - Quick reference

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 sequence sep where the split is made.
  • INTO { {result1 result2 ...} | {TABLE result_tab} }
    Specifies the target fields either as a list result1 result2 ... or as rows of the internal table result_tab.
  • IN {CHARACTER|BYTE} MODE
    Specifies character string or byte string processing.