View Single Post
Old 12-06-2013, 01:28 PM   #215
DrChiper
Bookish
DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.
 
DrChiper's Avatar
 
Posts: 1,019
Karma: 2003162
Join Date: Jun 2011
Device: PC, t1, t2, t3, Clara BW, Clara HD, Libra 2, Libra Color, Nxtpaper 11
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?
DrChiper is offline