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

COBOL Inspect field to remove special characters


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

New User


Joined: 05 Nov 2005
Posts: 12

PostPosted: Sat Jul 12, 2008 4:23 am
Reply with quote

Is there a way to inspect a field for special characters and remove them:

examples:

from to
A45678-12 A4567812
AB* C42-A ABC42A

Thank you.
Back to top
View user's profile Send private message
newbie

New User


Joined: 05 Nov 2005
Posts: 12

PostPosted: Sat Jul 12, 2008 4:28 am
Reply with quote

Oops, I meant:

from:

A45678-12

to:

A4567812

or

from:

AB* C42-A

to:

ABC42A


Thank you.
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: Sat Jul 12, 2008 4:58 am
Reply with quote

INSPECT can replace characters but I don't believe it'll remove them. Your best bet is to write a loop using reference modification to look at each character and move it to an output string if it's not a special character.
Back to top
View user's profile Send private message
rag swain

New User


Joined: 17 Dec 2007
Posts: 33
Location: pune,INDIA

PostPosted: Sun Jul 13, 2008 9:16 pm
Reply with quote

Declare a WS variable with various 88 level item as special characters which you want to omit from the string. And then traverse through the string comparing with the WS variable, if does NOT match, put each one into an output field and if matches, read the next one. you can do the traversing by a looping.
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts Substring number between 2 characters... DFSORT/ICETOOL 2
Search our Forums:

Back to Top