I have a large update file sent back to me from an external agency, would like this file to update a suppression table very simple... But the file contains " arround all values i.e.
"58153021","9009774"
Without using sed in unix I would like the procedure to strip these out... I have tried REPLACE but maybe I am typing this wrong:
v_person_id := REPLACE(SUBSTR (v_newline, 1, v_1comma - 1),'"','');
Any help would be great!
Adam
"58153021","9009774"
Without using sed in unix I would like the procedure to strip these out... I have tried REPLACE but maybe I am typing this wrong:
v_person_id := REPLACE(SUBSTR (v_newline, 1, v_1comma - 1),'"','');
Any help would be great!
Adam