Hello,
I want to import a 'csv' file in EDG. The separator however isn't a comma ',' but a pipe '|'.
The import triples should be related to the imported structure:
Every row has to become in instance of class Row, localname of the URI is the rownumber in the file.
Every value V (a string in the import file between |) in column C in a row N has to become a triple:
:rowN :columnC "V" .
What is the easiest way to achieve this?
The import function of EDG suggests there is already a function under the hood that performs such behavior.
Grz Jan