Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^3: what would you like to see in perl5.12?

by BrowserUk (Patriarch)
on Aug 07, 2008 at 15:55 UTC ( [id://702911]=note: print w/replies, xml ) Need Help??


in reply to Re^2: what would you like to see in perl5.12?
in thread what would you like to see in perl5.12?

As I originally proposed it, I don't think it would. In any legal printf format, % is followed one of %*+- #csduoxefgXEGbpniDUOF\d..

Which I think means that %{...} would not conflict with any existing formats, and would generate: Invalid conversion in printf: "%{" if it appeared in any existing code. The lack of backwards compatibility issues is the nice thing about that original proposal. Albeit that I'd extend/mutate my original proposal to encompass some of the further discussion it generated.

It can easily be extended to make %{...} a generic, interpolate whatever is inside this embedded code block and convert the result to a string in the default manner.

And that could further be extended in a manner in keeping with normal printf rules so that it can become: %fw.p{...} where the f, w & p follow the same rules for flags, width & precision as are applied to the standard s specifier.

To simplify: %fw.p{xxx} acts pretty much like:

printf "%fw.ps", "@{[xxx]}"

The code xxx is evaluated, the result converted to as string, and the string substituted as if %s had been used.


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.

Replies are listed 'Best First'.
Re^4: what would you like to see in perl5.12?
by JavaFan (Canon) on Aug 07, 2008 at 16:26 UTC
    printf "%{" is legal, and prints %{. With warnings on, it does issue a warning, but it's (currently) not illegal.

    But your initial proposal talked about interpolating in strings, and in strings, "%{hash}" is currently fine. No warnings. I'd be more worried about regular strings 'breaking' than any (s)printf formats.

      As far as I know, none of the new extensions in 5.10 are enabled unless a switch or pragma is used, so old code can continue untouched.

      The point about %{} is that it is a fairly natural extension of existing mechanisms that doesn't conflict with existing uses. That there may exist by happenstance some code that would need to be changed in minor ways before it would run under the auspices of the feature pragma is not, (should not be), a barrier to the addition of new features.


      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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://702911]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found