Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small detail on capturing all capitalized words #24

Closed
akonsta opened this issue Oct 12, 2018 · 1 comment
Closed

Small detail on capturing all capitalized words #24

akonsta opened this issue Oct 12, 2018 · 1 comment

Comments

@akonsta
Copy link

akonsta commented Oct 12, 2018

In your code you use the regex
r'[A-Z][a-z0-9]+'
as the pattern, but that would not count capitalized one letter words (i.e., I or A), capitalized words with apostrophes (e.g., Don't, Isn't, O'Leary) and it would also miss words (or abbreviations that had one or more capitals (e.g., USA, STOP and McKnight). There are certainly much more complicated ways to write the pattern, but I would suggest the pattern
r'[A-Z][A-Za-z0-9']*'
It is not a big deal, but I thought I would mention it. This might capture unintended strings (e.g., lists with letter counters like '(A)', '(B)', etc.; variables that show up in equations like X + Y; non-word strings like UK postal codes - EC1, W8, etc.), but I am of the school of thought that I would rather have more data than less.

@bbelderbos
Copy link
Collaborator

Hey Andrew, yes that is more accurate, I will adopt that pattern in my notebook. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants