How to find all words that end with the word łam
For example:
kochałam
miałam
byłam
zastanawiałam się
etc.
How to find all words that end with the word?
Re: How to find all words that end with the word?
They say ł is pronounced, w.
Reading that made me think of Baba Wawa, https://www.youtube.com/watch?v=zcns3A-IHMQ. (Hmm. Both dead.)
---
Something like (though this is not correct, or at least not working as I'd expect?):
regex:[\x{0141}-\x{0142}]am\s
Actually that does work. (When I copied the words, zastanawialam sie, somehow the file I created end up with an l rather then ł.)
Just need to fix it up so that whitespace or EOL are both found.
regex:[\x{0141}-\x{0142}]am\b
Reading that made me think of Baba Wawa, https://www.youtube.com/watch?v=zcns3A-IHMQ. (Hmm. Both dead.)
---
Something like (though this is not correct, or at least not working as I'd expect?):
regex:[\x{0141}-\x{0142}]am\s
Actually that does work. (When I copied the words, zastanawialam sie, somehow the file I created end up with an l rather then ł.)
Just need to fix it up so that whitespace or EOL are both found.
regex:[\x{0141}-\x{0142}]am\b
Re: How to find all words that end with the word?
ww:*łam , with Match whole filename when using wildcards unchecked.
Re: How to find all words that end with the word?
Code: Select all
[\x{0141}-\x{0142}]am\s
Ł or ł belongs to the Polish alphabet
Adam Małysz
Please see video:
https://www.youtube.com/watch?v=uegnJUAPduQ