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

Need help in rexx .


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

New User


Joined: 27 Mar 2014
Posts: 1
Location: india

PostPosted: Mon Apr 07, 2014 11:09 pm
Reply with quote

Hi i need help in reading a file using rexx. I want to read input file line by line and copy the words in an array.
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Mon Apr 07, 2014 11:33 pm
Reply with quote

Please tell the precise problem that you are having. Show code and data enclosed in Code tags to align them, a relevant portion of the trace, and the error message(s) including the message number(s).
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Tue Apr 08, 2014 3:06 am
Reply with quote

Or read up on EXECIO. You can do that in 3 statements including dataset (not file) allocation and free. Note that Rexx does not have arrays but stem variables.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Tue Apr 08, 2014 3:48 am
Reply with quote

I don't know much about REXX but this is what I can suggest you to start with along with others,

Code:
"ALLOC FI(LNAME) DA('MY.PS.READ') SHR"
                      "EXECIO * DISKR LNAME(STEM ARRAY. FINIS"
                      "FREE FI(LNAME)"
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Tue Apr 08, 2014 1:03 pm
Reply with quote

Rohit,

I feel I just wasted my time posting my response the way I did. I could easily have done what you did but then it would just be cut and pasted and nothing learned.

If TS is keen then he will still go and read up on EXECIO and probably should as there is a very nice subtlety with EXECIO which makes reading the stem afterwards a doddle.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Tue Apr 08, 2014 3:39 pm
Reply with quote

Nic,

I concur with you and I should have been a silent being what you posted.
I take this as a note ..

TS,
Please have a gogle or a forum search done and I am sure you would get many information to start with Nic's suggestion and may be starting from ,

www.ibmsystemsmag.com/mainframe/tipstechniques/applicationdevelopment/A-Beginner-s-Guide-to-the-REXX-Programming-Languag/
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 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
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top