in reply to Re^2: Problems Getting the Template Correct when Using unpack()
in thread Problems Getting the Template Correct when Using unpack()

... I show a "C" character ... it's actually a "special" character (... 0x80).

Is this character always a 0x80 character? If it's always the same, do you really care about extracting this character (which looks like some kind of delimiter/placeholder)? If it varies, how does it vary?

I was thinking about a regex-based solution, and a constant 0x80 in the middle of the record could be a nice little anchor.

Update: Added  <blockquote> block to start of node.


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^4: Problems Getting the Template Correct when Using unpack()
by ozboomer (Friar) on Oct 10, 2017 at 21:09 UTC

    No, it's something that can be a part of a message string OR it can be a flags byte, so at times, will need further processing... but thanks for the thought..