Currently doing some re-factoring and am trying to get a regex pattern that can return any method that is camel case. I am going to be using the regex option in eclipse search files.
def thisIsATest(self):
pass
def this_is_a_test(self):
pass
def this(self):
pass
I would want the search to obviously pick up thisIsATest
Edit: Oops you wanted camel case… Fixed (again):
Edit: To exclude single words I use a
+instead of a*.