Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to change the following patterns:

getFoo_Bar

to:

getFoo_bar

(note the lower b)

Knowing neither foo nor bar, what is the replacement pattern?

I started writing

sed 's/\(get[A-Z][A-Za-z0-9]*_\)\([A-Z]\)/\1

but I'm stuck: I want to write "\2 lower case", how do I do that?

Maybe sed is not adapted?

share|improve this question

8 Answers

up vote 16 down vote accepted
s/\(get[A-Z][A-Za-z0-9]*_\)\([A-Z]\)/\1\L\2/g

Test:

$ echo 'getFoo_Bar' | sed -e 's/\(get[A-Z][A-Za-z0-9]*_\)\([A-Z]\)/\1\L\2/g'
getFoo_bar
share|improve this answer
1  
To extend the answer, here's the general expression to turn to lower case all characters: echo getFoo_Bar | sed -e 's/\([A-Z][A-Za-z0-9]*\)/\L\1/g', that produces getfoo_bar – espinchi Jun 22 '12 at 18:21

To change getFoo_Bar to getFoo_bar using sed :

echo "getFoo_Bar" | sed 's/^\(.\{7\}\)\(.\)\(.*\)$/\1\l\2\3/'

The upper and lowercase letters are handled by :

  • \U Makes all text to the right uppercase.
  • \u makes only the first character to the right uppercase.
  • \L Makes all text to the right lowercase.
  • \l Makes only the first character to the right lower case. (Note its a lowercase letter L)

The example is just one method for pattern matching, just based on modifying a single chunk of text. Using the example, getFoo_BAr transforms to getFoo_bAr, note the A was not altered.

share|improve this answer
1  
Is there some way to make things go back to normal after an \L command? – Benjamin Aug 27 '10 at 9:41
1  
From gnu.org/software/sed/manual/sed.html : \E Stop case conversion started by \L or \U. – Xr. Nov 18 '11 at 8:25
1  
This is a great answer that goes far and beyond just answering the original question. It provides reference information about dealing with all kinds of case transformation tasks in sed. Saved me lots of research time. Thank you! – rustyx Jun 3 '12 at 10:54

Somewhat shorter:

echo getFoo_Bar | sed 's/_\(.\)/_\L\1/'
share|improve this answer
How about 's/\(_.\)/\L\1/? – Beta May 4 '10 at 5:49
sweet! looked everywhere for something like this +1 – Fire Crow Apr 18 '11 at 15:26

Shortest I can come up with:

echo getFoo_Bar | sed **'s/_./\L&/'**
share|improve this answer
1  
What do the **'s do? – potong Dec 15 '11 at 10:05

Some sed distribute do not support \L,\l,\U and \u, and how to get it with such sed destributes? I'm working in MS windows, and there is no gnu-distributed sed, only the FSF sed.

share|improve this answer
try cygwin – rustyx Jun 3 '12 at 10:58

From the FAQ: How do I convert a string to all lowercase or capital letters?

share|improve this answer
I don't want an all-capitalized string! sorry. – cadrian Mar 27 '09 at 12:07

You can use perl for this one:

perl -pe 's/(get[A-Z][A-Za-z0-9]*)_([A-Z])/\1_\l\2/'

The \l is the trick here.

sed doesn't do upper/lowercase on matched groups.

share|improve this answer
echo getFoo_Bar | sed 's/[Bb]/\L&/g'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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