http://www.perlmonks.org?node_id=1018894


in reply to Re: regex anchoring issue
in thread regex anchoring issue

Refer to charnames for a neat way to code the value of your $soh_string.

use charnames qw(:full); $soh_string = "\N{SOH}";
Bill

Replies are listed 'Best First'.
Re^3: regex anchoring issue
by kcott (Archbishop) on Feb 16, 2013 at 06:35 UTC

    Thanks, Bill. I had considered that but decided not to use it due to the ambiguity I noted in my opening paragraph. Had penguin-attack wanted the single ASCII character SOH, instead of the string '<SOH>', that was covered by Ctrl-A (also noted).

    [Side issue (struggling not to appear grossly pedantic): the charnames pragma has been distributed with Perl since at least v5.8.8 - the perldoc link (charnames) would provide the most recent documentation.]

    -- Ken