vote up 1 vote down star

I'm parsing an file, and parts of it is a records thing, the format is like:

CategoryA--
5: UserA
6: UserB
7: UserC
CategoryB--
4: UserA
5: UserB

I want to move it to a hash that looks like:

{ UserA => { CategoryA => 5, CategoryB => 4, }, 
  UserB => { CategoryA => 6, CategoryB => 5, },
  UserC => { CategoryA => 7, },
}

How do I do regex on this?

Edit: It does not have to be purely only regex - just in perl and loops would be good too.

flag

2  
This is not a job for a regex, at least not by itself. You'll need a loop also. – mmyers May 20 at 14:49
Did you already come up with some code? What kind of regex do you expect? One that will match a single line of one that will match a complete Category section? – Manni May 20 at 14:51
Just a way, loop or not, to get all the data out - it doesn't have to be pure regex. – Timmy May 20 at 14:52

6 Answers

vote up 5 vote down check

You need two regexes, one to identify new categories and one to parse user records.

#!/usr/bin/perl

use strict;
use warnings;

my %users;
my $cur;
while (<DATA>) {
    if (my ($category) = /^(.*)--$/) {
    	$cur = $category;
    	next;
    }
    next unless my ($id, $user) = /([0-9]+): (\w+)/;
    die "no category found" unless defined $cur;
    $users{$user}{$cur} = $id;
}

use Data::Dumper;
print Dumper \%users;

__DATA__
CategoryA--
5: UserA
6: UserB
7: UserC
CategoryB--
4: UserA
5: UserB

Or, if you have Perl 5.10 or later, you can use named captures with one regex:

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

my %users;
my $cur;
while (<DATA>) {
    next unless /^(?:(?<category>.*)--|(?<id>[0-9]+): (?<user>\w+))$/;
    if (exists $+{category}) {
    	$cur = $+{category};
    	next;
    }
    die "no category found" unless defined $cur;
    $users{$+{user}}{$cur} = $+{id};
}

use Data::Dumper;
print Dumper \%users;

__DATA__
CategoryA--
5: UserA
6: UserB
7: UserC
CategoryB--
4: UserA
5: UserB
link|flag
1  
You could probably make this a fair bit simpler by changing the input record separator to "--\n". – newt May 20 at 15:54
@newt: The "--\n" sequence doesn't mark the end of a record. Setting $/ to that would get no data for CategoryA and the data from CategoryA grouped with CategoryB. – Michael Carman May 20 at 16:38
@newt I considered doing that and priming the pump before the loop, but decided that the two regexes were easier to understand. – Chas. Owens May 20 at 16:42
@michael good point! – newt May 20 at 16:48
I don't think two regexes are absolutely necessary, you can put each different type in an alternation and capture each separately. I've done that before. – Axeman May 20 at 19:44
show 2 more comments
vote up 3 vote down

This perl code seems to do what your looking for (mostly with one change). I laied out the data structure a bit differently but not much.

#!/usr/bin/perl

use strict;

my @array = (
    "CategoryA--",
    "5: UserA",
    "6: UserB",
    "7: UserC",
    "CategoryB--",
    "4: UserA",
    "5: UserB"
);

my ($dataFileContents, $currentCategory);

for (@array) {
    $currentCategory = $1 if (/(Category[A-Z])--/);
    if (/(\d+): (User[A-Z])/) {
        $dataFileContents->{$2}->{$currentCategory} = $1
    }

}
link|flag
my $blah if TEST; will be deprecated in Perl 5.12 I believe and has always been discouraged. Either use a state variable (Perl 5.10) or declare a variable in a surrounding scope (earlier versions of Perl). – Chas. Owens May 20 at 16:09
\d does not match only [0-9] in Perl 5.8 and 5.10; it matches any UNICODE character that has the digit attribute (including "\x{1815}" and "\x{FF15}"). If you mean [0-9] you must either use [0-9] or use the bytes pragma (but it turns all strings in 1 byte characters and is normally not what you want). – Chas. Owens May 20 at 16:12
Using the DATA token (as Chas. did) makes this kind of testing easier, and easier to read. – glenn jackman May 20 at 16:13
@Chas: I don't think he's trying to emulate a state variable. $currentCategory is defined before the loop. The my() inside the loop is erroneous and should be deleted. – Michael Carman May 20 at 16:41
@Michael: Correct it was typed in haste and has be removed thanks. @Glenn: Thanks for the input it appears I could learn allot from Chas. – Copas May 20 at 18:22
vote up 1 vote down

Not exactly trying to golf here, but it can be done in a single alternation:

my ( %data, $category );
while ( <DATA> ) { 
    next unless /^(?:(Category\w+)|(\d+):\s*(User\w+))/;
    ( $1 ? $category = $1 : 0 ) or $data{$3}{$category} = $2;    
}

Data::Dumper (actually Smart::Comments) shows the output:

{
  UserA => {
             CategoryA => '5',
             CategoryB => '4'
           },
  UserB => {
             CategoryA => '6',
             CategoryB => '5'
           },
  UserC => {
             CategoryA => '7'
           }
}
link|flag
vote up 0 vote down

I'm trying something like:

while ( my $string =~ m/(.+)--\n(\d+):\s*(.+)\n/g ) {
# parse
}

but then I'm stuck.

link|flag
If you need to add additional information to your post, edit or comment on the original. – Hawker May 20 at 15:11
vote up 0 vote down

This will split it up for you.

prompt> ruby e.rb 
[["CategoryA--", nil, nil], [nil, "5", "UserA"], [nil, "6", "UserB"], [nil, "7", "UserC"], ["CategoryB--", nil, nil], [nil, "4", "UserA"], [nil, "5", "UserB"]]
prompt> cat e.rb 
s = <<TXT
CategoryA--
5: UserA
6: UserB
7: UserC
CategoryB--
4: UserA
5: UserB
TXT
p s.scan(/(^.*--$)|(\d+): (.*$)/)
prompt>
link|flag
vote up 0 vote down
#!/usr/bin/perl

use strict;
use Data::Dumper;

print "Content-type: text/html\n\n";

my ($x,%data);
do {
    if (/^(Category\w+)/) {
        $x=$1;
    } elsif (/^([0-9]+):\s*(User\w)/) {
        if (!defined($data{$2})) {
            $data{$2} = {$x,int($1)};
        } else {
            $data{$2}{$x} = int($1);
        }
    }   
} while (<DATA>);

print Dumper \%data;


__DATA__
CategoryA--
5: UserA
6: UserB
7: UserC
CategoryB--
4: UserA
5: UserB


RESULT:

$VAR1 = {
    'UserC' => {
        'CategoryA' => 7
                 },
    'UserA' => {
        'CategoryA' => 5,
        'CategoryB' => 4
                 },
    'UserB' => {
         'CategoryA' => 6,
         'CategoryB' => 5
     }
};
link|flag

Your Answer

Get an OpenID
or

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