What is the difference between bulitin fuction VERIFY and INDEX?
Answers were Sorted based on User's Feedback
Answer / diana
INDEX(x,y) returns the starting position of the string y within string
x. Returns 0 if y not present in x.
Verify(x,y) returns the first position in x where any character in
y is not in string 1. If all characters in x are contained in y, result is zero.
| Is This Answer Correct ? | 1 Yes | 0 No |
index(x,y) : builtin-function to return the starting position of x match y. no y are in x then 0. k = index('abcabcdefg','cd'); k= 6
veryfy(x,y): builtin-function to return the first(leftmost) position of x not any in y. all x are in y then 0. k =veryfy('123456a','0123456789') ; k= 7
| Is This Answer Correct ? | 1 Yes | 0 No |
How we call procedures in PL/1?
How did PL/I originate?
Difference between main program and a sub program in PL/1?
What are the CONDITIONS in PL/1?
Explain REENTRANT?
What is the use of DEFINED attribute in DCL statement?
What is the difference between Based and Define?
Difference between Do While and Do Until?
What is the difference between DEFINED attribute and LIKE atrribute.
What tools are available in PL/1?
How do you include an copybook?
How do you handle exception in PL/1?