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

Logic to remove hypen and string the data


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

Active User


Joined: 01 May 2006
Posts: 151
Location: Hyderabad

PostPosted: Tue May 01, 2007 8:27 pm
Reply with quote

Hi all,

My requirement is like this,

01 A-VAR PIC X(10) VALUE KIRAN-CSC.

I need to transform this into KIRANCSC000.i.e,
1. Remove hyphen
2. Add '000' at end of the field.

I don't know where is the position of the string and how many Hyphen I have.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue May 01, 2007 9:46 pm
Reply with quote

Hello,

I'm going to guess that your "input" is 'KIRAN-CSC ' (note the ending space).

One way to do this is to redefine the original 10-byte field as an array of 10 single-bytes.

Then define a second array of 10 single-bytes.

For each new value:
Initialize the second array to 0000000000.
Set the index or a subscript to the beginning of each array.

If the character in the input is a '-' or a space,
. . skip that byte and increment the input array position.
Otherwise, move the input "keeper" character to the output array and
. . increment the position in both arrays.
Repeat until you've parsed the entire input field.

The "output" will now contain the non'-' values from the "input" and will have zeros filling the unused positions on the right side. The value in the output area will be 'KIRANCSC00'. Note this is not the same as the posted result - the posted result will not fit in a PIC X(10) field.

If you want exactly 3 zeros to follow the result value, you will have to code slightly differently.
Back to top
View user's profile Send private message
jasorn
Warnings : 1

Active User


Joined: 12 Jul 2006
Posts: 191
Location: USA

PostPosted: Wed May 09, 2007 7:12 am
Reply with quote

Something like this.

Unstring A-VAR
delimited by all '-'
into ws-part1
ws-part2

string ws-part1 delimited by ' '
ws-part2 delimited by ' '
'000' delimited by size
into a-var-reformatted
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed May 09, 2007 7:20 am
Reply with quote

Hello,

What if there are more than 2 places with a '-'?

What if the field won't hold 000 after the meaningful characters?

When (if) our TS responds we will be better able to offer suggestions.
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 How to save SYSLOG as text data via P... All Other Mainframe Topics 4
No new posts Store the data for fixed length COBOL Programming 1
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
Search our Forums:

Back to Top