Quantifiers - no one told me about Quantifiers....
Sorry The Ducks, I still know too little about Python, to try your suggestion, as you didn't provide a specific example.
IN search and repalce
: .* - works replaces all with :
: .*{12,} - error
: .{12,}* - error
: .*12,
Main search
title:"~(: .*)" - Works matches all with :
title:"~(: .*{12,})" no matches
title:"~(: .*){12,}" no matches
I did try, but you need to give the actuall expression
|