The goal is to have a MetaClass called ComputerContent that will look something like this:
ComputerContent
Manufacturer
ProcessorSpeed
RAM
.....
I need to be able to use a regex and some heuristics to get the RAM and ProcessorSpeed out of the Description field of the CSV and put them into the appropriate fields of the MetaClass.
So my question is: Is there a way i can hook to the built-in importing process or I need to build my own import tool?
I have a CSV with some products that I want to improt. Lets assume the products are computers, and the csv looks something like this:
ProductName | Description | Manufacturer | Details |
Dell Laptop | soome text... 3gb, 3.4Ghz ...some text... | Dell | blah blah |
...
The goal is to have a MetaClass called ComputerContent that will look something like this:
ComputerContent
Manufacturer
ProcessorSpeed
RAM
.....
I need to be able to use a regex and some heuristics to get the RAM and ProcessorSpeed out of the Description field of the CSV and put them into the appropriate fields of the MetaClass.
So my question is: Is there a way i can hook to the built-in importing process or I need to build my own import tool?