Do you have the complete URI in a single string or do you
have it in a text? The first is quite simple:
($file) = $uri =~ /^.*\/(.*)$/;
You might end up with an empty
$file if the
URI ends in a / (and therefore uses the default index file).
The later is more complicate, for you have to keep different
things in mind:
- You should change the class of allowed characters to
something more strict, to just the allowed characters that
are defined in the
URI RFC.
- On the other hand people tend to put allowed
URI-characters behind their URIs. Usual character in that
range include the dot (`.'), closing brackets (`)') and coma
(`,'). Also quotation marks fall in that range. So you
should add a 1-character wide character class at the end
that doesn't include those, too.
There might be other things that I haven't thought about
yet, but I hope you get the image...
--
Alfie
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.