Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: extract file name from path

by ww (Archbishop)
on Sep 11, 2013 at 16:56 UTC ( [id://1053527]=note: print w/replies, xml ) Need Help??


in reply to extract file name from path

Your regex attempt looks as though you'll find careful reading of perldoc perlre and perldoc perlretut and/or the regex tuts here useful. "Mastering Regular Expressions" would be a good followup; "Regular Expressions Pocket Reference" would often be helpful.

That said, one fairly direct route would be a lookahead -- which tells the regex engine you want to accept matches until the match would be what's in the lookahead... in this case, app/:

$line =~ m|.+(?=app/)(.*)\s--javaproc|

In other words, match 1 or more of anything (dot-plus) until there's a match on app/ and then capture up until the space before the --javaproc. Note that there's no need to escape the slashes in the patch when using alternate regex delimiters.

Update: eliminating the ".java" (per OP's spec) is left so there's some learning exercise left here.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 15:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found