Could be done with dynamic embedded SQL (something like this):
DCL-S HexText Char(20) inz 'C1C2C3F1F2F3'; //Hex for ABC123
DCL-S CmdSQL VarChar(64);
DCL-S CvtText Char(10);
CmdSQL = 'Values(x''' + %Trim(:HexText) + ''') into ?';
Exec SQL Prepare DynSQL From :CmdSQL;
//Check SQLCODE or SQLSTATE
Exec SQL Execute DynSQL using :CvtText;
//Check SQLCODE or SQLSTATE
Dsply CvtText; //Should be 'ABC123'
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
Modernization ? Education ? Consulting on IBM i
Database and Software Architect
IBM Champion since 2020
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
"Train people well enough so they can leave, treat them well enough so they
don't want to. " (Richard Branson)
"Learning is experience ? everything else is only information!" (Albert
Einstein)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Vinay
Gavankar
Sent: Friday, 5 January 2024 03:41
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: Converting Character string to Hex
Hi,
I need to convert a character string to hex, which I don't think can be done
with "cvtch".
For example, if input string is '04A1060A' (8 characters) I need the output
string to be x'04A1060A' (4 characters).
Any ideas?
TIA
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
As an Amazon Associate we earn from qualifying purchases.