[perl #59016] Re: Made some fixes to split on a regex and moved from Str.pir to any-str.pir

2008-09-19 Thread Chris Davaz
# New Ticket Created by "Chris Davaz" # Please include the string: [perl #59016] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=59016 > Sorry forgot to put the method in alphabetical order, here you go. On Fri, Sep 19, 200

[perl #59014] Made some fixes to split on a regex and moved from Str.pir to any-str.pir

2008-09-19 Thread Chris Davaz
# New Ticket Created by "Chris Davaz" # Please include the string: [perl #59014] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=59014 > Got rid of "tempstr" and now returns the entire string on a non-match. Index: src/built

Re: Made some fixes to split on a regex and moved from Str.pir to any-str.pir

2008-09-18 Thread Moritz Lenz
Chris Davaz wrote: > Sorry forgot to put the method in alphabetical order, here you go. Thanks, applied as r31234. It's still masked by Str.split(Str), which should be moved to builtins/any-str.pir as well, but that's the job for another patch. 1234.split(/3/) works right now, so it's even a bit

Re: Made some fixes to split on a regex and moved from Str.pir to any-str.pir

2008-09-18 Thread Chris Davaz
Sorry forgot to put the method in alphabetical order, here you go. On Fri, Sep 19, 2008 at 12:36 AM, Chris Davaz <[EMAIL PROTECTED]> wrote: > Got rid of "tempstr" and now returns the entire string on a non-match. > Index: src/builtins/any-str.pir ===

Made some fixes to split on a regex and moved from Str.pir to any-str.pir

2008-09-18 Thread Chris Davaz
Got rid of "tempstr" and now returns the entire string on a non-match. Index: src/builtins/any-str.pir === --- src/builtins/any-str.pir (revision 31220) +++ src/builtins/any-str.pir (working copy) @@ -71,7 +71,42 @@ .return(retv)