in reply to a simple substitution question

tilly: The author of the tutorial may have been trying to show off, but his/her answer is more correct than the answer that d4vis provided. What happens with the following?

'Who\'s going to the store?" "Us," she replied."'

Yeah, I know. "She" is using pitiful grammar, but it's all I could come up with on the spur of the moment.

Here, you lose capitalization with d4vis's regex. The unknown author came up with a nifty trick to preserve capitalization. However, it's not very clear. I'm also wondering if some versions of locale might break it depending upon the alphabet used.

Instead, I'd use something like the following (which I feel is more clear -- but untested):

s/\b([Uu])s\b/$1 eq 'U' ? Them : them/eg;
Cheers,
Ovid

Update: Oy! That's what I get for untested code. I guess tilly and I will send the rest of the day spanking each other (figuratively speaking).

Here's the correct version of the regex (which I still think is clearer than tilly's solution):

$test =~ s/\b([Uu])s\b/$1 eq 'U' ? "Them" : "them"/eg;
Tilly's solution, however, is better with multiple substitutions.

Replies are listed 'Best First'.
RE: (tilly) 2: a simple substitution question
by tilly (Archbishop) on Aug 21, 2000 at 22:39 UTC
    D'oh! Actually the author was even more clever and figured out how to leave 'US' alone. Your solution breaks under strict though. Try this:
    my %tr = qw(U T u t); s/\b([Uu])s\b/$tr{$1}hem/g;
    BTW I would wonder about the author's solution working with Unicode...