Skip to content

ABAP Keyword Documentation →  ABAP − Short Reference 

SPLIT - Short 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 up a character- or byte string dobj.

Additions

  • AT sep
    Specifies the separation sequence sep in which the split will take place.
  • INTO { {result1 result2 ...} | {TABLE result_tab} }
    Specifies the target fields either as a list result1 result2 ... or as lines of the internal table result_tab.
  • IN {CHARACTER|BYTE} MODE
    Defines character- or byte string processing.