I have this in perl
return "$file->{srv_cgi_url}/dl.cgi/$hash/$fname";
where
$file->{srv_cgi_url}
returns
http://s1.site.com/cgi-bin/
how can I remove the trailing /cgi-bin/ from the string? :)
Thanks!
|
I have this in perl
where
returns
how can I remove the trailing /cgi-bin/ from the string? :) Thanks!
| |||
|
feedback
|
|
Like this:
That is all. See perldoc perlre for details. | |||
|
feedback
|
|
While substitution can work, it’s fragile and difficult to extend and maintain. I strenuously recommend learng to use URI, URI::QueryParam, and Path::Class instead (the last is not used in this example but important and related).
| |||
|
feedback
|