Re: Keyword extractor's source code....where I can find it???
by glen herrmannsfeldt <gah@[EMAIL PROTECTED]
>
Jan 17, 2007 at 01:25 AM
giugy wrote:
> Sorry but maybe I make a stupid errore....if I change
> return "\n" + word + " [" + count + "]";
> with
> return count=" "+word;
>
> I obtain an error like this "found: java.lang.String required: int" ,
Sorry, it was supposed to say return count+" "+word;
In both the original and this one, the int is converted to String.
By the way, you don't need to post three times for us to read it.
-- glen