Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to validate the length of an input varible

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> NATURAL & MQSERIES
Author Message
prasanth_urs

New User


Joined: 04 Dec 2006
Posts: 28
Location: Pune,India

PostPosted: Tue Jan 23, 2007 10:32 am    Post subject: How to validate the length of an input varible
Reply with quote

Hi all,

Can anyone please tell me how to validate the lenght of an input varible?

My requirement here is to,accept a variable and if it's length is 8 or 10 , the remaining process is to be done.
But iam strugling to find out a built in for the length calculation.

So please provide the information as early as possible.

Many thanks in advance.

Prasanth
Back to top
View user's profile Send private message
References
PostPosted: Tue Jan 23, 2007 10:32 am    Post subject: Re: How to validate the length of an input varible Reply with quote

ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 1796
Location: Israel

PostPosted: Tue Jan 23, 2007 12:14 pm    Post subject:
Reply with quote

I assume you are talking about NATURAL.

There is no built in function for length in NATURAL, but you can use the following method:
Code:
DEFINE DATA LOCAL                 
1 #A (A10)                         
1 #B (N2)                         
END-DEFINE                         
*                                 
#A := 'OFEROFEROF'                 
*                                 
EXAMINE #A FOR ' ' GIVING LENGTH IN #B
*                                 
WRITE #B                           
*                                 
END                               


O.
Back to top
View user's profile Send private message
prasanth_urs

New User


Joined: 04 Dec 2006
Posts: 28
Location: Pune,India

PostPosted: Tue Jan 23, 2007 1:23 pm    Post subject: Re: How to validate the length of an input varible
Reply with quote

ok...i tried this and it worked....!!!


Thanks ...offer 71:D
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> NATURAL & MQSERIES All times are GMT + 6 Hours
Page 1 of 1