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 8731617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T09:16:44+00:00 2026-06-13T09:16:44+00:00

I have a string variable which contains some text (shown below). The text has

  • 0

I have a string variable which contains some text (shown below). The text has line breaks in it as shown. I would like to search the text for a given string, and return the number of matches per line number. For instance, searching for “keyword” would return 1 match on line 3 and 2 matches on line 5.

I have tried using strstr(). It does a good job finding the first match, and giving me the remaining text, so I can do it again and again until there are no matches. Problem is I do not know how to determine which line number the match occurred on.

Hello,
This is some text.
And a keyword.
Some more text.
Another keyword! And another keyword.
Goodby.
  • 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-13T09:16:45+00:00Added an answer on June 13, 2026 at 9:16 am

    Why not split the text on line-feeds and loop, use the index + 1 as a line number:

    $txtParts = explode("\n",$txt);
    for ($i=0, $length = count($txtParts);$i<$length;$i++)
    {
        $tmp = strstr($txtParts[$i],'keyword');
        if ($tmp)
        {
            echo 'Line '.($i +1).': '.$tmp;
        }
    }
    

    Tested, and working. Just a quick tip, since you’re looking for matches in a text (sentences, upper- and lower-case etc…) perhaps stristr (case-insensitive) would be better?
    An example with foreach and stristr:

    $txtParts = explode("\n",$txt);
    foreach ($txtParts as $number => $line)
    {
        $tmp = stristr($line,'keyword');
        if ($tmp)
        {
            echo 'Line '.($number + 1).': '.$tmp;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have strings like below: @property.one@some text here@property.two@another optional text here etc which contains
I have a string variable tmpImgURLStr which contains URL like www.abc.com/img.png . i want
I have a string which contains text and some <a> tags in it; I
I have a HTML inside a string variable, which contains some <img> tags. I
I have a variable actor which is a string and contains values like military
I have a String which contains some formatted content with LineFeed after each line.
The variable filepath which is a string contains the value Música . I have
I want to have a string variable for a PHP class, which would be
Okay so i have a variable called search which holds the string Find this
I have a ini file which contains some sample values like: [Section1] Value1 =

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.