Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Golf: Embedded In Order

by boo_radley (Parson)
on Apr 27, 2001 at 21:05 UTC ( [id://76170]=note: print w/replies, xml ) Need Help??


in reply to Golf: Embedded In Order

42 chars in the sub.
use strict; my $s = "abcdefghijklmnopqrstuvwxyz"; my $t = "for"; print x($s,$t),"\n"; $t="perl"; print x($s,$t),"\n"; sub x{ my($s,$t)=@_; eval"\$s=~tr/$t//cd"; $s eq$t; }
update
one less:
sub x{ eval"\$_[0]=~tr/$_[1]//cd";$_[0]eq$_[1]; }

Replies are listed 'Best First'.
Re: Re: Golf: Embedded In Order
by MeowChow (Vicar) on Apr 27, 2001 at 22:07 UTC
    Interesting method, but it doesn't properly handle:
    my $s = "abcfoforrxyz"; my $t = "for";
    There are also serious escaping issues with the interpolated code inside the eval :)
       MeowChow                                   
                   s aamecha.s a..a\u$&owag.print

Log In?
Username:
Password:

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

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

    No recent polls found