Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8841089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:37:30+00:00 2026-06-14T10:37:30+00:00

Perl beginner with a question on regular expressions. The code below successfully gets the

  • 0

Perl beginner with a question on regular expressions.

The code below successfully gets the webpage contents from my website.
Then, I check for a match to the pattern “search type: [Dir or Geo]”. That bit I just wrote is not the actual regex code, but text to show what I want to match.

Here’s an excerpt of what the get method actually captures (sorry, not enough reputation points yet to post images):

        what: movers<br/>
        where: toronto<br/>

            search type:
             Dir <br/>

between “search type:” and “Dir” there are tabs and spaces and that paragraph character you see in Word docs (right after the word “type:”.

Below is my code.

use strict;
use warnings;
use WWW::Mechanize;
my $searchtype = "nothing yet";
my $mech = WWW::Mechanize->new();
my $webpage;
$mech->credentials('user','password' );
foreach my $keyword qw(movers) {
    print "\$keyword = $keyword\n";
    my $url = "http://myurl";
    $mech->get($url);
    $webpage = $mech->content();
    if ($webpage =~ /search type.+([A-Z][a-z][a-z])/) {
        $searchtype = $1;
        print "$searchtype\n";
    }
}

So, why won’t my regular expression $webpage =~ /search type.+([A-Z][a-z][a-z])/ capture the “Dir” in the match variable $1?

Driving me nuts.

Louie

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:37:31+00:00Added an answer on June 14, 2026 at 10:37 am

    /./ matches any character except newlines unless you use /./s. Since you want to match the newline, you’d have to add /s.

    /search type.+([A-Z][a-z][a-z])/s
    

    But that would find the last three letters of the document. You actually want

    /search type:\s+([A-Z][a-z][a-z])/
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not a beginner to regular expressions, but their use in perl seems
This is a beginner-best-practice question in perl. I'm new to this language. The question
I am a beginner to Perl syntax and have a basic wildcard question. I
I am kinda beginner in perl and I need know how can I check
Possible Duplicate: In Perl, how can I check from which module a given function
I am beginner and trying to develop facebook desktop apps with below code use
I am just beginner with Perl, so if it sounds stupid - sorry for
I am a beginner in Perl CGI etc. I was experimenting with server-push concept
perl hex() analog in python how to? I have next perl code: my $Lon
Perl is continuing to surprise me. I have a code which takes an input

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.