I have to find all initializations (captial letter words, such as SAP, JSON or XML) in my plain text files. Is there any ready-made script for this? Ruby, Python, Perl - the language doesn't matter. So far, I've found nothing.
Regards,
Stefan
|
I have to find all initializations (captial letter words, such as SAP, JSON or XML) in my plain text files. Is there any ready-made script for this? Ruby, Python, Perl - the language doesn't matter. So far, I've found nothing. Regards, Stefan |
|||||||||||
|
|
Here you go:
Grabs all all-uppercase words that are at least two characters long. I use |
||||
|
A simpler version of Conspicuous Compiler's answer uses the
|
|||||||
|
|
A regular expression like |
|||||||
|
|
Here's a Python 2.x solution that allows for digits (see example). Update: Code now works for Python 3.1, 3.0 and 2.1 to 2.6 inclusive.
|
|||||||||||||
|