Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^6: Problem with ampersand and regex

by Anonymous Monk
on Dec 19, 2012 at 22:01 UTC ( [id://1009645]=note: print w/replies, xml ) Need Help??


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

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

Replies are listed 'Best First'.
Re^7: Problem with ampersand and regex
by davido (Cardinal) on Dec 19, 2012 at 22:09 UTC

    Well, that does tell us that you're not chomping the input, which you should be doing. chomp @array; would take care of that problem. What it doesn't show me is how the following would fail:

    my @array = ( 'sn ThisUser', 'mail: ThisUser@somewhere.com', 'cn: This User', 'uid: MyUID', ); foreach my $line ( @array ) { if( $line =~ m/^mail:\s+([\S]+)/ ) { print "$1\n"; } }

    It doesn't fail on my system, which leads me to believe that the problem is in a portion of your code that we're not seeing, or in your data-set. If your data-set looks clean, we're back to the portion of the code that we haven't been shown.


    Dave

      Thank you for your time Dave in going to this much effort to help a total stranger. Not sure exactly what fixed it, but I used the chomp as recommended and then copied/pasted your code and that seems to have solved the issue.

      Thanks again and have a great Christmas!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1009645]
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-23 13:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found