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

  • Home
  • SEARCH
  • 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 165539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:56:19+00:00 2026-05-11T11:56:19+00:00

I am writing a Perl script that is searching for a term in large

  • 0

I am writing a Perl script that is searching for a term in large portions of text. What I would like to display back to the user is a small subset of the text around the search term, so the user can have context of where this search term is used. Google search results are a good example of what I am trying to accomplish, where the context of your search term is displayed under the title of the link.

My basic search is using this:

if ($text =~ /$search/i ) {     print '${title}:${text}\n'; } 

($title contains the title of the item the search term was found in) This is too much though, since sometimes $text will be holding hundreds of lines of text.

This is going to be displayed on the web, so I could just provide the title as a link to the actual text, but there is no context for the user.

I tried modifying my regex to capture 4 words before and 4 words after the search term, but ran into problems if the search term was at the very beginning or very end of $text.

What would be a good way to accomplish this? I tried searching CPAN because I’m sure someone has a module for this, but I can’t think of the right terms to search for. I would like to do this without modules if possible, because getting modules installed here is a pain. Does anyone have any ideas?

  • 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. 2026-05-11T11:56:20+00:00Added an answer on May 11, 2026 at 11:56 am

    Your initial attempt at 4 words before/after wasn’t too far off.

    Try:

    if ($text =~ /((\S+\s+){0,4})($search)((\s+\S+){0,4})/i) {     my ($pre, $match, $post) = ($1, $3, $4);     ... } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 123k
  • Answers 123k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer IB will recognise the IBOutlets defined in the superclass. You… May 12, 2026 at 12:59 am
  • Editorial Team
    Editorial Team added an answer To use O(n) memory and O(n) performance, create a stack;… May 12, 2026 at 12:59 am
  • Editorial Team
    Editorial Team added an answer http://blog.famillecollet.com/post/2009/07/01/mysql-worbench-5.1.16-1-en you can find the latest version of mysql-workbench for… May 12, 2026 at 12:59 am

Related Questions

I am working on a web app that uses Perl and I need to
I am writing a Perl script (in Windows) that is using File::Find to index
I am writing a script to capture disk usage on a system (yes, I
I am writing a Perl module, and I am using carp to throw a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.