Skip to Content
0
Former Member
Dec 06, 2006 at 09:10 AM

remove " from file

32 Views

Hallow Im doing a batch input from file csv (comma dilmeted) In the file I have company that ok and company name with before and after the company name word <b>''</b> how can I get rid of from that . just<b> ''</b> before and after the company name .

*--


table with data from file(csv)--


LOOP AT itab1.

SPLIT itab1 AT ',' INTO:

itab-osek_morsh

<b>itab-company_name</b>

itab-company_code.

APPEND itab.

ENDLOOP.