Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^3: Problem with ampersand and regex

by davido (Cardinal)
on Dec 19, 2012 at 21:11 UTC ( [id://1009636]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Problem with ampersand and regex
in thread Problem with ampersand and regex

What do you get if you capture?

if( $line =~ /^mail:\s+([\S]+)$/ ) { my $mail = $1; print "mail=$mail\n"; }

Dave

Replies are listed 'Best First'.
Re^4: Problem with ampersand and regex
by Anonymous Monk on Dec 19, 2012 at 21:23 UTC
    I get mail=asdf.com ? ?

      Add the following to your script:

      use Data::Dumper;

      ...and then on the line immediately preceding your "for" loop, add, "print Dumper \@array;".

      There might be something broken in your input data, and that would be a simple means of identifying (or eliminating) it as a problem.


      Dave

        Done and here is a sample of what I got back:
        ', 'sn: ThisUser ', 'mail: ThisUser@somewhere.com ', 'cn: This User ', 'uid: MyUID
        Now what?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1009636]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-19 11:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found