How do find the alphabet

General discussion related to "Everything".
Post Reply
Debugger
Posts: 565
Joined: Thu Jan 26, 2017 11:56 am

How do find the alphabet

Post by Debugger »

How do find the whole alphabet [A-Ża-ż] except the letter h?

Not work for me:
Aa[^h]*+żŻ
therube
Posts: 4580
Joined: Thu Sep 03, 2009 6:48 pm

Re: How do find the alphabet

Post by therube »

In Everything, I think this does it:

Code: Select all

!h  regex:[A-ż]
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: How do find the alphabet

Post by void »

Alternatively:
regex:[a-gi-z]
Debugger
Posts: 565
Joined: Thu Jan 26, 2017 11:56 am

Re: How do find the alphabet

Post by Debugger »

void wrote: Thu May 23, 2019 2:28 am Alternatively:
regex:[a-gi-z]
A very good alternative... with a minor amendment to include the last two Polish letters. zźż
Post Reply