Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

G'day Rolf,

That feature was introduced in v5.34: "perl5340delta: Blanks freely allowed within but adjacent to curly braces".

My tests:

$ alias perle alias perle='perl -Mstrict -Mwarnings -Mautodie=:all -MCarp::Always -E +' $ perlbrew switch perl-5.32.0 $ perle 'say $]; say join ",",map {ord} split //, $_ for "\x{ 41 }", " +\x{41}", "\x{263A}", "\x{ 263A }"; say for "\x{41}", "\x{ 41 }"' Non-hex character ' ' terminates \x early. Resolved as "\x{00}" at -e + line 1. Non-hex character ' ' terminates \x early. Resolved as "\x{00}" at -e + line 1. Non-hex character ' ' terminates \x early. Resolved as "\x{00}" at -e + line 1. 5.032000 0 65 9786 0 A $ perlbrew switch perl-5.34.0 $ perle 'say $]; say join ",",map {ord} split //, $_ for "\x{ 41 }", " +\x{41}", "\x{263A}", "\x{ 263A }"; say for "\x{41}", "\x{ 41 }"' 5.034000 65 65 9786 9786 A A

It's not mentioned in perlop, so a doco omission but not a bug in Perl itself. Perhaps raise a doco bug report.

— Ken


In reply to Re: Problem with escape sequence \x for hex with spaces "\x{ 263A }" by kcott
in thread Problem with escape sequence \x for hex with spaces "\x{ 263A }" by LanX

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-19 15:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found