I use EditPlus.
This tool has a nice search option where you can search either regular text or RegEx search.
I want to search for the next Uppercase alphabet preceeded by a lowercase alphabet. What do I put in the search box for this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
[A-Z][a-z]+should do it.Translation: Exactly one capital letter, followed by one or more lowercase letters.
Edit: I had the relationship backwards:
[a-z]+[A-Z]+Translation: One or more lower-case letters, followed by one or more upper-case letters.