Date: 11/15/00
- Next message: Michael Kimsal: "Re: [PHP] [PHP + PDFLib] PHP "streaming" of PDF files"
- Previous message: Michael Geier: "RE: [PHP] How 2 ANALYZE POPULAR SEARCH WORDS?"
- Next in thread: Ignacio Vazquez-Abrams: "Re: [PHP] counting matches with eregi()"
- Reply: Ignacio Vazquez-Abrams: "Re: [PHP] counting matches with eregi()"
- Reply: Robert V. Zwink: "RE: [PHP] counting matches with eregi()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I want to count the number of times a word appears in a string. I am using
php3/linux
Say I have a string:
$string = "my house is a new house but not a big house in my household"
I want to count how many times the word 'house' appears. If I use
parentheses and include a $matches array in an eregi function, it stores
partial matches, not a count of full matches in the entire string.
Also the manual says that word boundary \b should work with php3, but the
series of statments:
$pattern = "\bhouse\b"
$test = eregi($pattern, $string, $matches);
return with no matches. I need to make sure that 'household' is not included
in the count of whole words. what am i doing wrong?
_____________________________________________________________________________________
Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Michael Kimsal: "Re: [PHP] [PHP + PDFLib] PHP "streaming" of PDF files"
- Previous message: Michael Geier: "RE: [PHP] How 2 ANALYZE POPULAR SEARCH WORDS?"
- Next in thread: Ignacio Vazquez-Abrams: "Re: [PHP] counting matches with eregi()"
- Reply: Ignacio Vazquez-Abrams: "Re: [PHP] counting matches with eregi()"
- Reply: Robert V. Zwink: "RE: [PHP] counting matches with eregi()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

