Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-19 Thread Erik Price
Brad Wright wrote: Erik, thanks, are you able to pint me to some good reference sources on tokenizer's... i have never come across them before I have been scouring the web, and am coming up a decided blank. :) The only tokenizers I have used are the StringTokenizer and StreamTokenizer classes

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread Brad Wright
Thanks for the reply Rene, Any change of a code sample of how u did this?? Im not at all experienced in Java. Thanks again for replying Cheers, Brad Nel vino la verità, nella birra la forza, nell'acqua i bacilli -- In

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread Erik Price
Brad Wright wrote: Thanks for the reply Rene, Any change of a code sample of how u did this?? Im not at all experienced in Java. According to the manual, PHP does have some tokenizer functions: http://www.php.net/manual/en/ref.tokenizer.php However, the documentation appears to be lacking as

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread Brad Wright
Erik, thanks, are you able to pint me to some good reference sources on tokenizer's... i have never come across them before I have been scouring the web, and am coming up a decided blank. :) Cheers, Brad Nel vino la verità, nella birra la forza, nell'acqua i bacilli

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread Brad Wright
Thanks Erik, looking now :) Cheers, Brad Nel vino la verità, nella birra la forza, nell'acqua i bacilli -- In wine there is truth, in beer there is strength, in water there are bacteria From: Erik Price [EMAIL

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread Pete James
The tokenizer that Erik was referring to is actually a PHP lexer, not a general tokenizer. Perhaps you would be looking for the strtok() function? www.php.net/strtok Brad Wright wrote: Erik, thanks, are you able to pint me to some good reference sources on tokenizer's... i have never come

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread -{ Rene Brehmer }-
On Wed, 19 Mar 2003 07:30:20 +1000, Brad Wright wrote about Re: [PHP] Using PHP to get a word count of a MSword doc what the universal translator turned into this: Thanks for the reply Rene, Any change of a code sample of how u did this?? Im not at all experienced in Java. Thanks again for

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread -{ Rene Brehmer }-
From: Erik Price [EMAIL PROTECTED] Date: Tue, 18 Mar 2003 16:57:57 -0500 The only tokenizers I have used are the StringTokenizer and StreamTokenizer classes in Java. If you want to learn about these, go to this web page: http://www.mindview.net/Books/TIJ/ and download the book Thinking in

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-17 Thread -{ Rene Brehmer }-
On Mon, 17 Mar 2003 15:43:07 +1000, Brad Wright wrote about [PHP] Using PHP to get a word count of a MSword doc what the universal translator turned into this: I have a mySQL DB that stores word documents (as a BLOB). I am trying to find a way of doing a word count on the documents using PHP. Can

RE: [PHP] Using PHP to get a word count of a MSword doc

2003-03-16 Thread John W. Holmes
I have a mySQL DB that stores word documents (as a BLOB). I am trying to find a way of doing a word count on the documents using PHP. Can anyone help?? Look at this: http://www.winfield.demon.nl/index.html to convert it to text and then count words. I just did a quick search to find the