How to find all words that end with the word?

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

How to find all words that end with the word?

Post by Debugger »

How to find all words that end with the word łam

For example:
kochałam
miałam
byłam
zastanawiałam się
etc.
therube
Posts: 4580
Joined: Thu Sep 03, 2009 6:48 pm

Re: How to find all words that end with the word?

Post by therube »

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
NotNull
Posts: 5167
Joined: Wed May 24, 2017 9:22 pm

Re: How to find all words that end with the word?

Post by NotNull »

ww:*łam , with Match whole filename when using wildcards unchecked.
Debugger
Posts: 565
Joined: Thu Jan 26, 2017 11:56 am

Re: How to find all words that end with the word?

Post by Debugger »

Code: Select all

[\x{0141}-\x{0142}]am\s
It works fine.

Ł or ł belongs to the Polish alphabet :P

Adam Małysz


Please see video:
https://www.youtube.com/watch?v=uegnJUAPduQ
Post Reply