Hi,
I am trying to do a find-replace with wildcards that will match strings like:
την νομίζω
ΤΗΝ ΝΟΜΙΖΩ
Την μαρία
στην Μαρία
Στην Μαρία
ΣΤΗΝ ΜΑΡΙΑ
but will not match strings like:
την ντουντούκα
ΤΗΝ ΝΤΟΥΝΤΟΥΚΑ
Την Ντουντούκα
στην μπάντα
Στην Μπάντα
ΣΤΗΝ ΜΠΑΝΤΑ
I have used this find string:
([Ττ][Ηη])([Νν])( )([μν ΜΝ])
how can I adapt it so that it keeps matching words staring with "μ" or "ν" but does not match words starting with "μπ" or "ντ"?
Bookmarks