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

String command in COBOL to concatenate to names


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

New User


Joined: 28 Aug 2006
Posts: 54
Location: Madrid

PostPosted: Mon Jan 08, 2007 3:06 pm
Reply with quote

Hi,

I want to use STRING command to do the following.

First Name (20) - SREE RAM
secon name(20) - SHYAM BOSS

can any one provide me the STRING command to get the following Result.

O/p- SREE RAM SHYAM BOSS

Thanks,
Sree
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Mon Jan 08, 2007 3:22 pm
Reply with quote

Hi Sree,

Code:
STRING First Name
       DELIMITED BY SIZE       
       ' '     
       secon name
       DELIMITED BY SIZE       
       INTO   WS-VAR
Back to top
View user's profile Send private message
sreekusr
Warnings : 1

New User


Joined: 28 Aug 2006
Posts: 54
Location: Madrid

PostPosted: Mon Jan 08, 2007 3:26 pm
Reply with quote

hi,

thanks a lot Ekta ..i will try it out.

Regards,
Sree
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Mon Jan 08, 2007 3:35 pm
Reply with quote

sreekusr wrote:
I want to use STRING command to do the following.
First Name (20) - SREE RAM
secon name(20) - SHYAM BOSS
O/p- SREE RAM SHYAM BOSS

Assuming that names might have single spaces imbeded but not two or more imbeded spaces:
Code:
string first delimited by '  '
       space delimited by size
       second delimited by '  '
   into outarea

should work....
Back to top
View user's profile Send private message
sreekusr
Warnings : 1

New User


Joined: 28 Aug 2006
Posts: 54
Location: Madrid

PostPosted: Mon Jan 08, 2007 4:37 pm
Reply with quote

Thank you Mr.William .

It worked.

Regards
Sree
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 RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
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 COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
Search our Forums:

Back to Top