Join list of strings with a comma
问题 I am learning ABAP. In the past I used python. Python: ', '.join(['one', 'two', 'three']) Result: 'one, two, three' How can I join a list of strings with , and create a string containing one, two, three ? System release is 740. 回答1: Another way of writing CONCATENATE LINES OF ... is to use the 7.40 function concat_lines_of( [table =] itab [sep = sep] ) cl_demo_output=>display( concat_lines_of( table = value string_table( ( `one` ) ( `two` ) ( `three` ) ) sep = `, ` ) ). (Result: 'one, two,