I need to extract certain Abbreviations from a file such as ABS,TVS,and PERL. Any abbreviations which are in uppercase letters. I'd preferably like to do this with a regular expression. Any help is appreciated.
|
|
|||||||||||
|
|
|
It would have been nice to hear what part you were particularly having trouble with.
|
||
|
|
|
|
Reading text to be searched from standard input and writing all abbreviations found to standard output, separated by spaces:
Note the use of the POSIX character class [:upper:], which will match all uppercase characters, not just English ones (A-Z). |
||||
|
|
|
Untested:
Modified it to look for at least two consecutive capital letters. |
||||||
|
|
|
|
||||||||||
|
