Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It's not entirely clear what you're trying to accomplish (or demonstrate) with that code snippet. It is using a variable that is never assigned a value ($little), and it never even uses the function ucfirst. ...and there's no function called 'lsfirst' (at least not as part of core Perl).

But I can assure you that the \L, \U, \l, and \u metacharacters do work, as do their function based cousins, lc, uc, lcfirst, and ucfirst:

my $string_upper = "BAR"; my $string_lower = "bar"; print "Testing metacharacter operations.\n"; print "\\L: [$string_upper] => [\L$string_upper]\n"; print "\\U: [$string_lower] => [\U$string_lower]\n"; print "\\l: [$string_upper] => [\l$string_upper]\n"; print "\\u: [$string_lower] => [\u$string_lower]\n"; print "\nTesting function operations.\n"; print " lc($string_upper) => (" , lc $string_upper, ")\n"; print " uc($string_lower) => (" , uc $string_lower, ")\n"; print "lcfirst($string_upper) => (" , lcfirst $string_upper, ")\n"; print "ucfirst($string_lower) => (" , ucfirst $string_lower, ")\n";

...produces...

Testing metacharacter operations. \L: [BAR] => [bar] \U: [bar] => [BAR] \l: [BAR] => [bAR] \u: [bar] => [Bar] Testing function operations. lc(BAR) => (bar) uc(bar) => (BAR) lcfirst(BAR) => (bAR) ucfirst(bar) => (Bar)

Dave


In reply to Re: lcfirst and ucfirst not working by davido
in thread lcfirst and ucfirst not working by laksh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-20 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found