2005 Mar 22 7:58 PM
I want to use the CO function to dertermine valid characters, including a single quote.
i.e if x CO 'ABCD''.
What is the proper syntax?
2005 Mar 22 8:15 PM
Its a little funny, two (') represents one ('). See the example below
REPORT ZRICH_0004 .
parameters: p_check(10) type c.
* Contains a space, A, B, C D, or an "'".
if p_check co ' ABCD'''.
write:/ p_check.
endif.Regards,
Rich Heilman
2005 Mar 22 8:15 PM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |