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

Re: Re: Why am I get a core dump when I use ??{}

by BazB (Priest)
on Apr 09, 2004 at 21:16 UTC ( [id://344035]=note: print w/replies, xml ) Need Help??


in reply to Re: Why am I get a core dump when I use ??{}
in thread Why am I get a core dump when I use ??{}

This core dumps on 5.8.3 - I dunno if upgrading can be classed as a solution :-)

Update: Oh, and perlre (on 5.8.3) says:

"(?{ code })"
WARNING: This extended regular expression feature is considered highly experimental, and may be changed or deleted without notice.
I think exploding satisfies the whole "highly experimental" bit.

There is however a simple way of making the code work: you have too many question marks. Try:

print "$_ ", /(.*)(?{$countSpaces->()})/ ? "has 1 or no spaces\n" : "h +as more than one space\n";
...in the right place. The output is:
this line has more than one space has more than one space that_is_5_spaces has more than one space This isonespaceonly has more than one space therearenospaceshere has 1 or no spaces
...which looks like (almost) the right output to me.

Update 2 Erm, ah. Doh. (??{ code }) is perfectly valid according to perlre too - put equally experiment. Nevermind. Using highly experimental features is probably a bad idea.


If the information in this post is inaccurate, or just plain wrong, don't just downvote - please post explaining what's wrong.
That way everyone learns.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-24 23:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found