InterviewSolution
| 1. |
Explain Split Function? |
|
Answer» The split function can be used to split given DATA at a PREDEFINED character and process the single pieces afterwards. At every iteration, the current index KEY SPLIT-COUNT is stored (starting with 0). By using split, we could, for example, read a table FIELD and wrap every single line with a CERTAIN code The split function can be used to split given data at a predefined character and process the single pieces afterwards. At every iteration, the current index key SPLIT-COUNT is stored (starting with 0). By using split, we could, for example, read a table field and wrap every single line with a certain code |
|