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

Case Sensitivity in REXX


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

New User


Joined: 24 Dec 2007
Posts: 10
Location: India

PostPosted: Fri May 06, 2011 12:38 pm
Reply with quote

Hi,
I am trying to read a file which contains ID and passwords to be input to a JCL SYSIN created by the REXX. Now when I read the ID and password to a string, its converting the string to Uppercase automatically and the upper case letters are not valid. I know this is a property of REXX. Can you please let me know how can I read the string in REXX with changing the case ?

Eg : The file string contains "abcDefGH". When I read, it makes the string to "ABCDEFGH", but I need "abcCefGH". How can I do it ? Please help.

Thanks
Bidhu
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Fri May 06, 2011 12:44 pm
Reply with quote

bidhucsc wrote:
Now when I read the ID and password to a string, its converting the string to Uppercase automatically and the upper case letters are not valid. I know this is a property of REXX.

You know?

Maybe you should spend a bit more time to RTFM!
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri May 06, 2011 12:48 pm
Reply with quote

Please post a runtime Trace that shows this happening.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Fri May 06, 2011 1:01 pm
Reply with quote

"EXECIO * DISKR yourfile (STEM yourstem. FINIS"

Do i =1 to yourstem.0
Call Proces_Stem_Line yourstem.i
End

Proces_Stem_Line:
Arg line

Parse Arg line line /* this is to keep mixed case */
Return
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Fri May 06, 2011 1:02 pm
Reply with quote

Hi,

how are you reading it ? If you PARSE the record it will not change it to upper case.


Gerry
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Fri May 06, 2011 1:04 pm
Reply with quote

Hi Peter,

you are still quick even at your age icon_lol.gif


Gerry
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Fri May 06, 2011 1:17 pm
Reply with quote

Yes Gerry,

sometimes im so fast its frightening me icon_biggrin.gif
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Fri May 06, 2011 1:19 pm
Reply with quote

Is that what your girlfriend said to you ? icon_wink.gif
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Fri May 06, 2011 1:29 pm
Reply with quote

Gerry,

it is girlfriendS icon_cool.gif
Back to top
View user's profile Send private message
vasanthz

Global Moderator


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

PostPosted: Fri May 06, 2011 2:36 pm
Reply with quote

Quote:
it is girlfriendS

King Julian is not going to be happy icon_lol.gif
Back to top
View user's profile Send private message
bidhucsc

New User


Joined: 24 Dec 2007
Posts: 10
Location: India

PostPosted: Fri May 06, 2011 2:42 pm
Reply with quote

I was using PULL before to process the line. Now when I added PARSE just before PULL, it worked. Thank you all for the help.

Thanks
Bidhu
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Fri May 06, 2011 2:43 pm
Reply with quote

and ... the whole upper/lower case shebang is clearly documented starting from here

publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/IKJ4BK90
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 COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top