![]() |
|
Perl Monk, Perl Meditation | |
PerlMonks |
Re: Regex: Matching last of repeated character to end of stringby jbware (Chaplain) |
on Nov 04, 2005 at 12:30 UTC ( [id://505686]=note: print w/replies, xml ) | Need Help?? |
What happens with your regex is it finds the first "/" it can, and then the ".*?" matches any character until the end. It sounds like you might want something more like this:
This ensures that it matches on the last "/" it can find, and blanks it and everything after it out. -jbWare
In Section
Seekers of Perl Wisdom
|
|