in reply to Re^2: Help please
in thread Help please

I have searched far and wide and I can't find how to accomplish the printing of the trailing char from character set .?,

Replies are listed 'Best First'.
Re^4: Help please
by davidrw (Prior) on Apr 26, 2008 at 03:46 UTC
    Here's two different ways:

    One way is that you could capture the character class match with parens, and then refer to it (in this case) as $2.
    /it (.*)([.?,])$/i and print $1, $2, $/;

    Another way would be to simply move the character class to be inside the existing capturing parens:
    /it (.*[.?,])$/i and print $1, $/;