MVSFORUMS.com A Community of and for MVS Professionals
View previous topic :: View next topic
Author
Message
John Corbin Beginner Joined: 23 Jan 2004 Posts: 38 Topics: 21
Posted: Wed Jan 28, 2004 10:49 am Post subject: REXX Question
The following is a call to XRange...
goodrange = Xrange('A','Z') || Xrange('0','9')
Does this call guarantee that only Capital A to Z and numbers
0 to 9 are in goodrange.... ?
Back to top
superk Advanced Joined: 19 Dec 2002 Posts: 684 Topics: 5
Posted: Wed Jan 28, 2004 2:32 pm Post subject:
Looks like it needs to be:
goodrange = Xrange('A','I') || Xrange('J','R') || Xrange('S','Z') ||,
Xrange('0','9') -
Back to top
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum