CSVDocument.Splice Method
| Explanation | Split CSV data according to the specified conditions. Rows that setisfy the condition are removed from the CSVDocument object and stored in a new CSVDocument object. | |
| Call format | var csvdoc2 = csvdoc.Splice( row [, cond1 [, cond2, … ] ] ) | |
| Return value | A new CSVDocument object consisting of only rows that satisfy the condition. | |
| Arguments | integer row | Line number starting with 0 of the line that starts the split. The row after the row specified by row is the target of division. |
| String cond | Search conditions that specify the lines to be split Specify in the same format as the Load method. Can be specified as many search conditions as the number of columns at the maximum, and if multiple search conditions specified, combine them with AND. | |
| Exception | None | |
| Example of use | | |
| Related item | Merge, Load methods | |