Using a regex expression like <p>[a-z] (trying to find paragraphs which start with lowercase), the search also finds uppercase items: thus "<p>and ...", "<p>Become...", etc. I thus must explicitly check the "case sensitive" option to get only the lowercases.
However, using regex I explicitly must be able to define just the regex lowercase via [a-z] for matches and the "case sensitive" should not overrule this. In fact I think that the "case sensitive" setting must be disabled for regex fully.
Can this behavior be confirmed?
|