From the Anki documentation:
- use
w:foo
to match word boundaries, likebfoob
- use
nc:foo
to match while ignoring accents e.g.nc:uber
matchesüber
.
Is it possible to combine both?
Example use case: to match für
(thinking of the German word).
None of the following works: w:nc:fur
, nc:w:fur
.