I have a large CSV data file (CDR) that has some 300 fields. Looks something like:
value1,value2,value3,...,value51,"subvalue52.1,subvalue52.2.,...subvalue51.20",value53,...,value300
The gotcha is field52. field51 is properly extracted, but field52 isn't. I'm not worried yet about the subextraction--right now, I just want field52 to be the whole thing inside the quotes.
from transforms.conf:
[my-report-stanza-name]
DELIMS = ","
FIELDS = f1,f2,f3,...,f300 (where f1-300 are LONG NAMES)
Is it because my f1-f300 are LONG?
Do I have the syntax for DELIMS wrong? (like, is that saying the delim char can be any of " OR , OR ' ?)
Once I do get this right, what's the best way to subextract f52?
adTHANKSvance gang!
-tv
... View more