Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: regex capture case

by rmflow (Beadle)
on Jun 23, 2009 at 10:32 UTC ( [id://773954]=note: print w/replies, xml ) Need Help??


in reply to Re: regex capture case
in thread regex capture case

what if
$_ = "Aabc"; $someRegex = "aA.*";
then I'll need to uc second char.

$_ and $someRegex are not known.

Replies are listed 'Best First'.
Re^3: regex capture case
by Porculus (Hermit) on Jun 23, 2009 at 15:04 UTC

    What about

    $someRegex = "(aA|Aa).*";

    ...what effect should that have? Or what about

    $someRegex = "(?!aa)[Aa]+.*"

    Basically, what you're asking for is not feasible in the general case. If you know that $someRegex will always be very simple, it becomes tractable; you can use something like YAPE::Regex to parse the regex and match elements thereof to the extracted string to determine which characters' case needs to change. But for arbitrary regexes, it gets hard quickly.

    Depending on what you actually need this for, you may find it simpler to request both a regex and a case template, or to have your input take the form of a restricted pattern that you yourself can then translate into a regex and a case template.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found