There are many ways to pack that, depending upon what is going to read it back and the ranges of the values.

For example, if you are reading it back in the same or another script; the ineteger is unsigned and you want to retains full double precision, then:

$packed = pack 'C/A* N d', 'ewh2442', '018234', 35.67;; print for unpack 'C/A* N d', $packed;; ewh2442 18234 35.67

But if another program is reading it back and is expecting a particular format; or if the string has to be a fixed length; or if the integer is signed; or if the integer can only range up to +-32767/0-65535; or you don't want to use 8-bytes for each float but rather only for; or if the reader is going to be on a different platform which uses a different endianess; then you might would need a different template.

Essentially you need to tell us a lot more before we can give you definitive help.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP an inspiration; A true Folk's Guy

In reply to Re: pack function by BrowserUk
in thread pack function by Spooky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.