Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Converting a text into lowercase but not the word with all CAPS letters.

by derby (Abbot)
on Jul 09, 2017 at 11:57 UTC ( [id://1194603]=note: print w/replies, xml ) Need Help??


in reply to Converting a text into lowercase but not the word with all CAPS letters.

This is one of those cases where for readability sake, I would separate the split logic from the case logic. This isn't going to win any perl golf competitions but future maintainers will not try to hunt you down!

#!/usr/bin/env perl use strict; use warnings; my $input = "I am a GIRL"; my $output = []; # split input by non-words ... if you need to keep non-word # characters then you'll need a different regex foreach my $word ( split( /\W+/, $input ) ) { # if the word is all upper case and it's not a single letter if( $word =~ /^\p{Uppercase}+$/ && length( $word ) > 1 ) { push( @$output, $word ); } else { push( @$output, lc $word ); } } print join( ' ', @$output ), "\n";

-derby

update: Fix regex from /\p{Lu}+/ to /^\p{Uppercase}+$/

  • Comment on Re: Converting a text into lowercase but not the word with all CAPS letters.
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1194603]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-26 08:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found