IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

To change double quotes into csv readable format


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
venkatatcts

New User


Joined: 16 Mar 2009
Posts: 55
Location: India

PostPosted: Fri Feb 19, 2016 8:13 am
Reply with quote

Hi,

There is a character field of length 50 which has special characters like "string1". I want to add double quotes to it. For example,

New York financial "times" to
New York financial ""times""

New York is "a" city to
New York is ""a"" city

The double quote string is dynamic in the field of length.

Thanks in advance
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8697
Location: Dubuque, Iowa, USA

PostPosted: Fri Feb 19, 2016 8:53 am
Reply with quote

Reference modification or redefinition into an array will work. You need your original variable and an output variable; just move character by character from the input to the output variable, checking to see if you have the double quote mark character and if so adding another one to the output variable.

Questions you need to investigate:
- what happens if the copied data is more than 50 bytes with the extra quotes?
- are you limited to only one pair of quotes per line?
- will you always have paired quotes, or can you have just a single one? if a single one is possible, does it get doubled in the output?

And nothing you posted has anything to do with a .csv file, so why did you mention it in your title?
Back to top
View user's profile Send private message
venkatatcts

New User


Joined: 16 Mar 2009
Posts: 55
Location: India

PostPosted: Fri Feb 19, 2016 8:56 am
Reply with quote

Thanks,

Is there any sample code which I could refer. Thanks
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8697
Location: Dubuque, Iowa, USA

PostPosted: Fri Feb 19, 2016 6:19 pm
Reply with quote

This is a forum for experts -- who won't need sample code, especially for such a simple task. Perhaps you should go the Beginner's and Students Forum instead?
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Need to convert date format DFSORT/ICETOOL 20
No new posts InfoSphere OPTIM CSV ouput vs DSNTIUA... IBM Tools 3
No new posts Help in extracting data between doubl... DFSORT/ICETOOL 5
Search our Forums:

Back to Top