I initially reacted to this line in the OP:
$username =~ /(cyc(\|\/)(.*?)/;
Which had several problems.
- Does not assign the resulting match
- Should use non-capturing clustering or a character class for the '/' or '\'
- Has an extra opening paren
- Uses non-greedy match to select the username
These would work:
($username) = $ENV{REMOTE_USER} =~ /cyc(?:\\|\/)(.+)/;
($username) = $ENV{REMOTE_USER} =~ /cyc[\/\\](.+)/;
# And to cleanup a little
($username) = $ENV{REMOTE_USER} =~ m{cyc(?:\\|/)(.+)};
($username) = $ENV{REMOTE_USER} =~ m{cyc[/\\](.+)};
But not having coffee yet I corrected the split version instead.
It's also worth nothing that split("\\|/","a|/b") does not work as one might think.
perl -e 'my ($a,$b) = split("\\|/","a/b"); print "a:$a\nb:$b\n"'
a:a/b
b:
This happens because that pattern is actually looking for a literal '|/', as shown here:
perl -MO=Deparse -e 'my ($a,$b) = split("\\|/","a/b");'
my($a, $b) = split(m[\|/], 'a/b', 3);
perl -e 'my ($a,$b) = split("\\|/","a|/b"); print "a:$a\nb:$b\n"'
a:a
b:b
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.