Hi Shong,
I have downloaded PDF parser and included in TOS. This component is generating plain text. I am not sure which component
to use to read this text file. Because my PDF file contains the table which is converting as in the text file as follows
----------------------------------------------------------------------------------------
Instrument Details
Asset Type:CORPORATE DEBT Provider:BCP Golden Copy
Identifiers
ISIN XS0283708575
CUSIP EG1215284
SEDOL B1P8V35
CFI Code
Titu Code 65083001
Central Code
SIIB Code
RIC
Code Number NA
Issuer Details
Group Issue NO
--------------------------------------------------------------------------
From this file I need to preapare the key value pairs and load them in DB.
Example:
ISIN : XS0283708575
CUSIP : EG1215284
SEDOL : B1P8V35
Please Suggest me how can I do this.
Thanks & Regards,
Syed
Hi
These three records do always start with "ISIN", "CUSIP" and "SEDOL"? If so, use a tFileInputFullRow to read each line one by one, and then filter the rows which start with "ISIN", "CUSIP" and "SEDOL" on tFilterRow, extract each line into multiple fields on tExtractDelimitedFields. for example
tFileInputFullRow--main-->tFilterRow-->tExtractDelimitedFields-->tLogrow
on tFilterRow, use the advanced module and set the filter expression as below:
Hi Shong,
I have given 'Filed Separater' as space in 'tExtractDelimitedFields' component.
This works fine for ISIN,CUSIP and SEDOL values but also I have the keys as 'Titu Code' and 'Central Code'.
For this it is not working.
Can you please suggest how can I do for these.