Re: [Geany] replace uppercase with lowercase‏

2012-10-01 Thread Matthew Brush
On 12-10-01 01:50 PM, papawa...@virgilio.it wrote: Hi all, Can anyone suggest a way to selectively replace uppercase letters with lowercase using regexp? My goal is to perform the following substitution: name_Function -> name_function My attempt so far was: Search: _[A-Z] Replace : _\1 E

[Geany] replace uppercase with lowercase‏

2012-10-01 Thread papawaigo
Hi all, Can anyone suggest a way to selectively replace uppercase letters with lowercase using regexp? My goal is to perform the following substitution: name_Function -> name_function My attempt so far was: Search: _[A-Z] Replace : _\1 Either the search or the replace miss the conversion.