I'm starting a new adventure to convert COBOL program to a Ruby program, I have to convert a a comp-3/packed decimal format to number.

From another previous post, there is code that would convert from a number to comp-3, but not the inverse.

link|improve this question

71% accept rate
All you need is the inverse of that previous answer. Why is that hard? – Ira Baxter Apr 7 '11 at 8:49
1  
Did inverse it, however, it came up with some funny characters. Have since resolved it by having the client "DISPLAY" the data without it all packed. Thanks for looking at this. – RedNax Apr 14 '11 at 9:30
feedback

1 Answer

COMP-3 is typically an IBM only method of packed decimal. I have had issues in the past converting the packed decimal on IBM to other formats. I would normally have to pad my destination size by a byte to get the sizes to match up.

I'm not aware of any COMP conversion programs or utilities that would help you on this.

link|improve this answer
There are packed decimal forms on many other chipsets and architectures. Motorol 68k and WD65x come to mind. Even the Intel x86 line has packed support. – Joe Zitzelberger Feb 21 at 16:33
That wasn't what the question was. He is asking for a conversion tool to do it for him. And COMP-3 is an IBM compiler only version of packed decimal. You won't find COMP-3 anywhere else. That doesn't mean packed decimal doesn't exist, just not COMP-3. – Bill Burgess Feb 21 at 22:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.