I am attempting to run this find command to match files with a camelcased name, with the goal being to put a space between adjacent lower and upper case letters, but it's not matching anything:
find -E . -regex "([a-z])([A-Z])"
An example of a file I'm trying to match is
./250 - ErosPhiliaAgape.mp3
I've tested this regex on this file here and it matches successfully.
What is it I'm doing wrong with my find command?