peter-mail...@web.de wrote:
Hello,
Hello,
I've to cut off parts of an url like
'/something_variable_1/something_constant/something_variable_2/something_variable_3/filename'
The result should be 'something_variable_3/filename'
To cut off the part '/something_variable_1/something_constant' works with the
regular expression 's/^.*\/something_constant\///'
But I dont manage to cut of the 'something_variable_2' part. I tried combinations of .*?{}() but the result is either no cut
('something_variable_2/something_variable_3/filename') or only the filename.
Any idea?
s!^.*/something_constant/[^/]+/!!;
John
--
Those people who think they know everything are a great
annoyance to those of us who do. -- Isaac Asimov
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/