× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



On 2018-10-18 9:32 AM, Justin Taylor wrote:
Is there any good way to set CCSID for named constants? I had hoped that the compiler could figure it out, but alas no. Here's a snippet of what I'd like to do.

Dcl-s variable varChar(255) ccsid(*utf8) ;
Dcl-c constant ';' ;
If %scan(constant :variable) > 0;
Endif;

The compiler doesn't like that (RNF0353: The first and second parameters of %SCAN or %SCANR are not of the same type.). I've got it working now by using hex constants, but that's kind of a pain to work with.

TIA


Instead of using hex constants, it might be less awkward/error-prone to code like this, using %CHAR to convert the constant to UTF-8.

If %scan(%char(constant:*utf8) :variable) > 0;


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.