Live data from Hacker News

Regex Dictionary

visca.com

1–7 of 7 posts

Re: Regex Dictionary

#2
I guess this is pretty useful in a pinch, but I'd much rather just run grep on my local dictionary file (/usr/share/dict/words on macOS), so I'm not limited in the number of matches or the HTML interface. The one thing that I can't do is parts of speech matching, but that's easy to solve by finding a file online that labels words correctly.

Re: Regex Dictionary

#4

I guess this is pretty useful in a pinch, but I'd much rather just run grep on my local dictionary file (/usr/share/dict/words on macOS), so I'm not limited in the number of matches or the HTML interface. The one thing that I can't do is parts of speech matching, but that's easy to solve by finding a file online that labels words correctly.

> but that's easy to solve

That's handwaving over a lot more than just grepping a word file.

Re: Regex Dictionary

#5

I guess this is pretty useful in a pinch, but I'd much rather just run grep on my local dictionary file (/usr/share/dict/words on macOS), so I'm not limited in the number of matches or the HTML interface. The one thing that I can't do is parts of speech matching, but that's easy to solve by finding a file online that labels words correctly.

Can you grep only adverbs in your words file?

Re: Regex Dictionary

#7
post #5

I guess this is pretty useful in a pinch, but I'd much rather just run grep on my local dictionary file (/usr/share/dict/words on macOS), so I'm not limited in the number of matches or the HTML interface. The one thing that I can't do is parts of speech matching, but that's easy to solve by finding a file online that labels words correctly.

Can you grep only adverbs in your words file?

> The one thing that I can't do is parts of speech matching, but that's easy to solve by finding a file online that labels words correctly.