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

How to compare Strings in COBOL


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

New User


Joined: 30 Nov 2004
Posts: 1
Location: Chennai

PostPosted: Wed Aug 03, 2005 12:45 am
Reply with quote

Could you please help me out on how to compare the strings in COBOL? If there is no such function availabe then can any one of you please advise how to proceed. Thanks in advance.

Regards
Tirumala
Back to top
View user's profile Send private message
shobam

New User


Joined: 18 Jul 2005
Posts: 34
Location: CN

PostPosted: Wed Aug 03, 2005 10:58 am
Reply with quote

Is the "IF" condition not working for you?

Option 2:

If there is a problem because of the trailing spaces in the string

INSPECT IP-STR1 TALLYING TRAILING-SPACES-COUNT FOR TRAILING SPACES
LEN-OF-STR1 = LENGTH(IP-STR1) - TRAILING-SPACES-COUNT

INSPECT IP-STR2 TALLYING TRAILING-SPACES-COUNT FOR TRAILING SPACES
LEN-OF-STR2 = LENGTH(IP-STR2) - TRAILING-SPACES-COUNT

IF IP-STR1(1:LEN-OF-STR1) = IP-STR2(1:LEN-OF-STR2)
DISPLAY "MATCH FOUND"
ELSE
DISPLAY "NO MATCH"
END-IF

Please correct me if I am wrong.
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 Compare only first records of the fil... SYNCSORT 7
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
Search our Forums:

Back to Top