Can someone write a script which will read my articles and create a file which has all the words in that article. for example say article is. There is a new gadget by abc company with great features like auto reset.... I want a file or a table popuplated with words like There is a new gadget...etc etc ... well you get the idea.
hum, wich language? you can use the split function of your favorite language... example : in perl : @array = split('**separator**', $string); **separator** can be a single character or a regular expression, in your case I would prefer the regexp \s{1,} that catches every single or multiple spaces... i dont know your specific needs, but look at FULLTEXT SEARCH of MySQL is also great...
If you're using Oracle then this is done for you. You use Oracle Text, but I suspect you're not using Oracle
it's a simple one/two hour script either using file or table. just read input split (using explode function in php) and produce the result. but i'm just too lazy working on this for free you should ask on programming thread, not here
you can do it in editpad lite - just find all " " (space) and replace with a line break... then save it as a csv - open it in excel - and filter out the dupes.
i hope an hour and 45 minutes of that two hours is just sitting there twiddling your nipples. this shouldn't take longer than 10 minutes. in any language...
I can tell you the steps , do it urself 1. Just parse the string on the basis of space, when ever u find the space, means a word gets, and save it in a veriable. 2. Make a connection with the data base, or open a text file. 3. Write it in the file or database.