CSVDocument.Load Method
| Explanation | Load CSV data from Reader object. Data before Load method is executed will be lost. When reading CSV data from a WEB server or file,Get method can be used, but the Load method has more flexibility in functions such as being able to select the line to be read. Added since Ver.4.2.0 starts from here --> If the internal character code is Unicode CSV Document, the character code of the input CSV file is Unicode. <--till here | ||||||||||||||||||||||
| Call format | csvdoc.Load( reader [, cond1 [, cond2, … ] ] ) | ||||||||||||||||||||||
| Return value | None | ||||||||||||||||||||||
| Arguments | Object reader | Reader object ReaderObject from which to read (object that can use the ReadLine method) | |||||||||||||||||||||
| String cond | Search condition that specifies the row to read Specify in the following format:-
Example:- "0==A" 1st column matches A row. | ||||||||||||||||||||||
| Exception | CSV-8 | Valid read object is not specified | |||||||||||||||||||||
| CSV-9 | Does not support ReadLine() method | ||||||||||||||||||||||
| Example of use | | ||||||||||||||||||||||
| Related item | Save, Get, Parse methods | ||||||||||||||||||||||