Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Golf: Embedded In Order

by chipmunk (Parson)
on Apr 27, 2001 at 17:54 UTC ( [id://76091]=note: print w/replies, xml ) Need Help??


in reply to Golf: Embedded In Order

I'll get things started here. I don't have time for the extra credit, but this solves the first part:
sub t_in_s { ($t=pop)=~s/./$&.*/g;$_[0]=~$t } t_in_s('abcdefghijklmnopqrstuvwxyz', 'for');
Although, if $t may contain non-word characters, that becomes:
sub t_in_s { ($t=pop)=~s/./\Q$&\E.*/g;$_[0]=~$t }

Replies are listed 'Best First'.
Re (tilly) 2: Golf: Embedded In Order
by tilly (Archbishop) on Apr 27, 2001 at 18:41 UTC
    If $s or $t can contain \n, you need a /s on both matches. But your $_[0] can be replaced with pop.

    That makes your solution turn into the 36 character:

    sub t_in_s { ($t=pop)=~s/./\Q$&\E.*/gs;pop=~/$t/s }
    or 38 if you wish to add my to make it strict compliant.
      I realized later that I had the replacement in the wrong order, and I could save two characters:
      sub t_in_s { ($t=pop)=~s/./.*\Q$&/gs;pop=~/$t/s }
      So that's 34 characters.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found