How do find the whole alphabet [A-Ża-ż] except the letter h?
Not work for me:
Aa[^h]*+żŻ
How do find the alphabet
Re: How do find the alphabet
In Everything, I think this does it:
Code: Select all
!h regex:[A-ż]
Re: How do find the alphabet
Alternatively:
regex:[a-gi-z]
regex:[a-gi-z]