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

Want to parse the line using REXX


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kushal Bothra

New User


Joined: 16 Feb 2011
Posts: 38
Location: Gurgoan

PostPosted: Wed Jan 23, 2013 5:26 pm
Reply with quote

Hi ,

I have a line of code, the line also contains : in that, I want to parse the line such that the string I am left with contains code that is presnt after :

for example

my line is -- >

WHERE FUNCTION_ID = :FUNCTION_ID_CST

I want that my line should be parsed so that I am left with
FUNCTION_ID_CST

Please help.

Thanks
Kushal
Back to top
View user's profile Send private message
David Robinson

Active User


Joined: 21 Dec 2011
Posts: 199
Location: UK

PostPosted: Wed Jan 23, 2013 5:36 pm
Reply with quote

Use POS or INDEX to determine the location of ":", then user RIGHT or SUBSTR to strip out the data you require.
Back to top
View user's profile Send private message
vasanthz

Global Moderator


Joined: 28 Aug 2007
Posts: 1742
Location: Tirupur, India

PostPosted: Wed Jan 23, 2013 6:32 pm
Reply with quote

Code:
/*REXX*/                                     
TEXT = 'WHERE FUNCTION_ID = :FUNCTION_ID_CST'
PARSE VAR TEXT PART1 ':' PART2               
SAY 'THIS IS PART1 ' PART1                   
SAY 'THIS IS PART2 ' PART2                   
EXIT                                         
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top