vote up 0 vote down star

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.

flag

24% accept rate
how are you going to determine whether a word is an abbreviation? there must be a database of some sort , like another file with all the abbreviations you can get, or a database where you can query. – ghostdog74 Jul 8 at 8:15
A nieve implementation might treat any string of uppercase characters longer than 2 characters as an abbreviation. – Matthew Scharley Jul 8 at 8:25
I would also add an upper limit, because if it's say longer than 5 or 6 characters then I'd doubt it's an abbreviation ;) – fortran Jul 8 at 9:32
FORTRAN was once an abbreviation... – heeen Jul 8 at 9:51
@fortran: What about TMTOWTDI? – Lars Haugseth Jul 8 at 10:02

4 Answers

vote up 4 vote down

It would have been nice to hear what part you were particularly having trouble with.

my %abbr;
open my $inputfh, '<', 'filename'
    or die "open error: $!\n";
while ( my $line = readline($inputfh) ) {
    while ( $line =~ /\b([A-Z]{2,})\b/g ) {
        $abbr{$1}++;
    }
}

for my $abbr ( sort keys %abbr ) {
    print "Found $abbr $abbr{$abbr} time(s)\n";
}
link|flag
vote up 3 vote down

Reading text to be searched from standard input and writing all abbreviations found to standard output, separated by spaces:

my $text;
# Slurp all text
{ local $/ = undef; $text = <>; }
# Extract all sequences of 2 or more uppercase characters
my @abbrevs = $text =~ /\b([[:upper:]]{2,})\b/g;
# Output separated by spaces
print join(" ", @abbrevs), "\n";

Note the use of the POSIX character class [:upper:], which will match all uppercase characters, not just English ones (A-Z).

link|flag
Put \b at the beginning and end. – Brad Gilbert Jul 8 at 16:21
Good idea, I've updated my answer. – Lars Haugseth Jul 8 at 16:41
vote up 2 vote down

Untested:


my %abbr;
open (my $input, "<", "filename")
  || die "open: $!";
for ( < $input > ) {
  while (s/([A-Z][A-Z]+)//) {
    $abbr{$1}++;
  }
}

Modified it to look for at least two consecutive capital letters.

link|flag
no need to substitute there, nor to read in the whole file before processing any (though you've got a bug: that's a glob(), not a readline(), due to the extra spaces). – ysth Jul 8 at 9:16
You're probably right, but the editor didn't allow it without the spaces. I suspect the "lt dollar" sequence got cut out without the spaces. – Marius Kjeldahl Jul 8 at 9:25
You need to tell the editor that you're in charge - or perhaps get a different editor. – Telemachus Jul 8 at 10:03
vote up 2 vote down
#!/usr/bin/perl

use strict;
use warnings;

my %abbrs = ();

while(<>){
    my @words = split ' ', $_;

    foreach my $word(@words){
        $word =~ /([A-Z]{2,})/ && $abbrs{$1}++;
    }
}

# %abbrs now contains all abreviations
link|flag
Missing a $word=~ there. For kicks, you could say: $word =~ y/A-Z//c or $abbrs{$word}++;. – ysth Jul 8 at 9:44
well spotted, thanks – dsm Jul 8 at 10:09
i need to extract only...abbreviations like ABC or BAV for example i have also like ABC123,CMV002 in my document it also extracts that... i just want to extract only ABC and CMV in this case.. can you help me? – lokesh Jul 9 at 5:53
OK, changed it so it does that – dsm Jul 9 at 9:12
Alternatively, if the numbers always come after the abbreviation, you can use /^([A-Z]+)[0-9]*$/ – dsm Jul 9 at 9:15
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.