i m in a doubt... i need to calculate term frequency of term in a document... what i did is simply just " counted the no of times that term appears in that document"...if that term appeared say 138 times i took the tf value as 138....m i doing right..?? as i read somewhere that termfrequency (tf)= term count/ no of words in the document...if this is true den how do i calculate the no of words in a document..is der some regex for it???

pls do reply..thank u

link|improve this question

0% accept rate
Based on previous post on this topic by same poster, tagging it as homework. – Aryabhatta May 20 '10 at 17:51
feedback

2 Answers

In most regular expression implementations there is the notion of a word boundary, \b. So a regex that would match one word could look like this: \b(\w+)\b.

Basically, what the regex says is: Match a word boundary, then at least 1 word character (\w+) and then a word boundary again. The enclosing parenthesis simply add the matched word to a group so that you can extract it later. This is probably not necessary in your case, so you can remove those if you like.

I hope that helps you a bit.

link|improve this answer
thanks guys....really appreciated..i m using c# – jaskirat May 20 '10 at 18:37
feedback

you don't mention what language/program your using. Most text editors will tell you how many words are in the document. In unix you can use the 'wc -w filename' command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.