Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: solution wanted for break-on-spaces (w/specifics)

by hippo (Bishop)
on Oct 26, 2021 at 21:47 UTC ( [id://11138089]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub txt($) {
      local $_=shift;
      my (undef, undef,$txt)=m{^\s*(\d+)\s+(\d+),(.*)};
      $txt;
    }
    
  2. or download this
    sub txt {
      shift =~ /^\s*\d+\s+\d+,(.*)/;
      return $1;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11138089]
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-04-25 15:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found