Hi,
this script will transform first argument from hex string (space separated) into text:
You should be able to use it as is in DCI transformation.
Best regards,
Victor
this script will transform first argument from hex string (space separated) into text:
Code Select
l = length($1);
out = "";
for(i = 1; i < l; i += 3)
out .= chr(x2d(substr($1, i, 2)));
return out;
You should be able to use it as is in DCI transformation.
Best regards,
Victor