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

Placing a varibale in a particular position using REXX


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

New User


Joined: 29 May 2007
Posts: 34
Location: chennai

PostPosted: Tue May 13, 2008 5:07 pm
Reply with quote

Hi,

can any one please let me know if there is any way of placing a varibale in the position specified using REXX

EX:
Input File delimited by comma
----+----1----+----2----+--
AAA,BBB,CCC
EEE,FFFFFFF,GGGGG
HHH,IIIIIIIIII,JJ

Required the output file like
first varibale in position 10 irrespective of length,
second in position 20 and third in position 40

1----+----2----+----3----+----4----+----5-
AAA BBB CCC
EEE FFFFFFF GGGGG
HHH IIIIIIIIII JJ
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Tue May 13, 2008 5:18 pm
Reply with quote

Code:
csv="AAA,bbb,ccccc,d,e,f"
parse var csv v1 "," v2 "," v3 "," v4 "," v5 "," v6 "," .
txt = ""
txt = txt || left(v1,10," ")
txt = txt || left(v2,10," ")
txt = txt || left(v3,10," ")
txt = txt || left(v4,10," ")
txt = txt || left(v5,10," ")
txt = txt || left(v6,10," ")

say "csv ==>" csv
say "txt ==>" txt


tested and working
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue May 13, 2008 10:14 pm
Reply with quote

Enrico's solution looks good, except the OP wanted the first value to be in position 10.

I think initial value of txt should be:
Code:
txt = copies(" ",9)   


which will cause everything else to shift right
Back to top
View user's profile Send private message
malathy_tv

New User


Joined: 29 May 2007
Posts: 34
Location: chennai

PostPosted: Wed May 14, 2008 10:04 am
Reply with quote

Hi all,

Thank you so much for the help... and its working great.....
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 INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top