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