vote up 0 vote down star

Is there any implementation of regex that allow to replace group in regex with lowercase version of it?

flag

4 Answers

vote up 3 vote down check

In Perl, you can do:

$string =~ s/(some_regex)/lc($1)/ge;

The /e option causes the replacement expression to be interpreted as Perl code to be evaluated, whose return value is used as the final replacement value. lc($x) returns the lowercased version of $x. (Not sure but I assume lc() will handle international characters correctly in recent Perl versions.)

/g means match globally. Omit the g if you only want a single replacement.

link|flag
vote up 1 vote down

Most Regex implementations allow you to pass a callback function when doing a replace, hence you can simply return a lowercase version of the match from the callback.

link|flag
vote up 1 vote down

If your regex version supports it, you can use \L, like so in a POSIX shell:

sed -r 's/(^.*)/\L\1/'
link|flag
vote up 0 vote down

In Perl, there's

$string =~ tr/[A-Z]/[a-z]/;
link|flag
which of course doesn't work for international characters.. – Anders Westrup Jan 9 at 11:01
The [A-Z]? It was an example. That said, I voted for j_random_hacker's answer. – Hank Gay Jan 9 at 11:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.