Re: BitVector in GET/POST Params

2004-04-01 Thread WC -Sx- Jones
Randy W. Sims wrote: maybe 'perldoc -f vec', 'perldoc -f pack', also I was only suggesting: man perlpacktut -Sx- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: BitVector in GET/POST Params

2004-04-01 Thread Randy W. Sims
On 4/2/2004 12:45 AM, Richard Heintze wrote: Let me rephrase that question: Is there a way I can store large integers (> 2**32) as character strings in radix 10 or radix 16 and covert these strings to and from bitvectors from which I can insert and extract individual bits? I think bitvector is the

Re: BitVector in GET/POST Params

2004-04-01 Thread Richard Heintze
Let me rephrase that question: Is there a way I can store large integers (> 2**32) as character strings in radix 10 or radix 16 and covert these strings to and from bitvectors from which I can insert and extract individual bits? I think bitvector is the name of the module. I did a search on CPAN a

Re: BitVector in GET/POST Params

2004-04-01 Thread WC -Sx- Jones
Richard Heintze wrote: What if I need more than 32 elements in my bit array? I suppose I could use the first hidden field for the first 32 elements of my array and the next 32 elements are stored in the next hidden field. Uggghhh... Is there an easier way? You must not read the regular beginners l