pjs.parseInt()
Â
Converts the value of an expression to an integer.
Parameters
Numeric or Character Expression
Examples
Example 1: Char -> Packed
pjs.define("c1", { type: 'char', length: 15, initValue: ' 12345.6789 -' });
pjs.define("p1", { type: 'packed decimal', length: 15, decimals: 5 });
p1 = pjs.parseInt(c1);
return p1;
//-12345.00000
Example 2: Zoned -> Packed
Â
pjs.define("z1", { type: 'decimal', length: 9, decimals: 5, initValue: 73.73442 });
pjs.define("p1", { type: 'packed decimal', length: 15, decimals: 5 });
p1 = pjs.parseInt(z1);
Â
return p1;
//73.00000
Â
RPG EquivalentÂ
%INT()