String.toEbcdicHex()
Converts a string to EDCDIC hex.
Parameters
String
Length to pad to (optional)
Return Value
This API returns a JavaScript Buffer object. The length of the buffer is determined by the parameters. If the String value length is less than the length provided, the buffer is padded with blanks. If the String value length is longer than the length provided, only the characters up to the specified length are converted.
Exception Handling
If you pass in an incorrect hex value, the Buffer module can throw an error.
Example
var myBuff = String.toEbcdicHex('Hello world');
var myString = String.fromEbcdicHex(myBuff.toString('hex'));
Some documentation pages have recently moved to a new section: Profound AppDev. If you are having trouble finding specific pages, try the documentation search capability or reach out to our Support team!