On Thu, Aug 16, 2012 at 9:09 AM, Lázaro Morales <lazaro@xxxxxxxxxxxxxxxx> wrote:
you gotta love perl... :)
Some time ago, Chris Adams said:
Of course, being perl, there's more than one way to do it.
I would do something like:
my ($file) = $url =~ m!^http://[^/]+/(.*)!;
That would strip off the leading protocol/host, leaving the rest. If
there was a subdirectory in the URL (e.g. http://host/some/file.zip) the
above would result in $file = "some/file.zip".
If you always only want the last part (following any slashes):
my ($file) = $url =~ m!([^/]+)$!;
This would take http://host/some/file.zip and give $file = "file.zip".
Wow!, fantastic solution, thanks very much Chris.
you gotta love perl... :)
*****************************************************************************
* Este mensaje de correo electrónico ha sido procesado por el *
* Servidor de Correo Electrónico de Frioclima y es un correo *
* válido para el dominio: frioclima.com.cu *
*****************************************************************************
--
users mailing list
users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
-- users mailing list users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org