Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Regex To Remove File Extension

by dreadpiratepeter (Priest)
on Dec 10, 2008 at 19:01 UTC ( [id://729479]=note: print w/replies, xml ) Need Help??


in reply to Regex To Remove File Extension

that is because you told it to take everything after a dot using a "greedy" match. You want a "non-greedy", using the ? modifier. try: /\..*?$/, alternately you could use /\.[^.]+$/ to remove a dot followed by one or more non-dot characters at the end of the string


-pete
"Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."

Replies are listed 'Best First'.
Re^2: Regex To Remove File Extension
by kennethk (Abbot) on Dec 10, 2008 at 19:07 UTC
    /\..*?$/ won't work because it still matches off the first period - I thought of that one at first, too. The second expression(/\.[^.]+$/) works fine.
      You are of course correct. I should pay more attention when responding to posts. In my defense, I was hard at work on some code and was distracted.


      -pete
      "Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."
        In your defense, my boss wishes I was hard at work on some code and was distracted.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-19 08:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found