vidyashankara Posted June 16, 2006 Share Posted June 16, 2006 Lets say i have a text file like below[code]MODEL 1abcdefgh12346789[/code]Is there a script which can tell me which line can i find "1234" in?ie, the string should output "1234 is in line 4." in this case. how do i do that? strpos doesnt seem to work, it returns the str position, not the line number. Link to comment https://forums.phpfreaks.com/topic/12206-locate-a-string-in-a-text-file-return-the-line-number/ Share on other sites More sharing options...
joquius Posted June 16, 2006 Share Posted June 16, 2006 $file = fread("file.txt");$key = search_array ("1234", $file); // key representing the line..that'll only get it if the line is only "1234" Link to comment https://forums.phpfreaks.com/topic/12206-locate-a-string-in-a-text-file-return-the-line-number/#findComment-46493 Share on other sites More sharing options...
AndyB Posted June 16, 2006 Share Posted June 16, 2006 Use the file() function to read the text file into an array (now you'll know which line is which) so you can echo the index value for lines which match your condition. Link to comment https://forums.phpfreaks.com/topic/12206-locate-a-string-in-a-text-file-return-the-line-number/#findComment-46494 Share on other sites More sharing options...
joquius Posted June 16, 2006 Share Posted June 16, 2006 [!--quoteo(post=384800:date=Jun 16 2006, 11:48 PM:name=AndyB)--][div class=\'quotetop\']QUOTE(AndyB @ Jun 16 2006, 11:48 PM) [snapback]384800[/snapback][/div][div class=\'quotemain\'][!--quotec--]Use the file() function to read the text file into an array (now you'll know which line is which) so you can echo the index value for lines which match your condition.[/quote]yes you're right my mistake...file not fread.if you want to know what line it's in...$file = file ("file.txt");foreach ($file as $line => $text){ if (preg_match ("/1234/", $text)) $line_with_str = $line;} Link to comment https://forums.phpfreaks.com/topic/12206-locate-a-string-in-a-text-file-return-the-line-number/#findComment-46496 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.