vote up 0 vote down star

How can i get the occurrences count of a Word in a database text field With LINQ ?

Keyword token sample : ASP.NET

EDIT 4 :

Database Records :

Record 1 : [TextField] = "Blah blah blah ASP.NET bli bli bli ASP.NET blu ASP.NET yop yop ASP.NET"

Record 2 : [TextField] = "Blah blah blah bli bli bli blu ASP.NET yop yop ASP.NET"

Record 3 : [TextField] = "Blah ASP.NET blah ASP.NET blah ASP.NET bli ASP.NET bli bli ASP.NET blu ASP.NET yop yop ASP.NET"

So

Record 1 Contains 4 occurrence of "ASP.NET" keyword

Record 2 Contains 2 occurrence of "ASP.NET" keyword

Record 3 Contains 7 occurrence of "ASP.NET" keyword

Collection Extraction IList < RecordModel > (ordered by word count descending)

  • Record 3
  • Record 1
  • Record 2

LinqToSQL should be the best, but LinqToObject too :)

NB : No issue about the "." of ASP.NET keyword (this is not the goal if this question)

flag

46% accept rate
Are you trying to do this on the database side using Linq to SQL? Or are you working with a subset of data on the client side (ie. Linq to Objects over a collection)? – Ahmad Mageed Oct 17 at 16:55
I've already fetched a subset of data containing keywords. So now i'm working in Linq To Object over collection yep :) – Yoann. B Oct 17 at 16:58
But i think that's should be better to build an all in one LinqToSQL query for performance maybe ... Instead of pre-fetch a subset of data that contains each keywords and then perform that operation in memory ? – Yoann. B Oct 17 at 17:02
You could write a database function for it, I can't imagine L2S being smart enough to build something like that in SQL. – Yuriy Faktorovich Oct 17 at 17:07
SQL is rather bad at string manipulation, it's sting functions are quite primitive, better to get your text as text and work on it in code. – Timothy Walters Oct 17 at 17:12

4 Answers

vote up 1 vote down check

A regex handles this nicely. You can use the \b metacharacter to anchor the word boundary, and escape the keyword to avoid unintended use of special regex characters. It also handles the cases of trailing periods, commas, etc.

string[] records =
{
    "foo ASP.NET bar", "foo bar",
    "foo ASP.NET? bar ASP.NET",
    "ASP.NET foo ASP.NET! bar ASP.NET",
    "ASP.NET, ASP.NET ASP.NET, ASP.NET"
};
string keyword = "ASP.NET";
string pattern = @"\b" + Regex.Escape(keyword) + @"\b";
var query = records.Select((t, i) => new
            {
                Index = i,
                Text = t,
                Count = Regex.Matches(t, pattern).Count
            })
            .OrderByDescending(item => item.Count);

foreach (var item in query)
{
    Console.WriteLine("Record {0}: {1} occurrences - {2}",
        item.Index, item.Count, item.Text);
}

Voila! :)

link|flag
vote up 1 vote down

Use String.Split() to turn the string into an array of words, then use LINQ to filter this list returning only the words you want, and then check the count of the result, like this:

myDbText.Split(' ').Where(token => token.Equals(word)).Count();
link|flag
The word could be followed by a period, or have a capital letter. – Yuriy Faktorovich Oct 17 at 16:48
vote up 1 vote down

Edit 2: I see you updated the question, changes things a bit, word counts per word eh? Try this:

string input = "some random text: how many times does each word appear in some random text, or not so random in this case";
char[] separators = new char[]{ ' ', ',', ':', ';', '?', '!', '\n', '\r', '\t' };

var query = from s in input.Split( separators )
            where s.Length > 0
            group s by s into g
    		let count = g.Count()
    		orderby count descending
    		select new {
    		    Word = g.Key,
    			Count = count
    		};

Since you are wanting words that might have a "." in them (e.g. "ASP.NET") I've excluded that from the separator list, unfortunately that will pollute some words as a sentence like "Blah blah blah. Blah blah." would show "blah" with a count of 3 and "blah." with a count of 2. You'll need to think of what cleaning strategy you want here, e.g. if the "." has a letter either side it counts as part of a word, otherwise it's whitespace. That kind of logic is best done with some RegEx.

link|flag
What if the word is have and you have haven't in your text? It would depend on the requirements if your solution would work. – Yuriy Faktorovich Oct 17 at 17:04
i don't really need the count of a specific word, but a data extraction ordered by the max count of a specific word count founded in each records – Yoann. B Oct 17 at 17:06
Same issues with [.] would also apply to ['], assuming you want to have quote marks excluded except when they're part of a word. This issue is probably best split into another question since you'll want the best regex to extract words (if there isn't already a question answering this). – Timothy Walters Oct 17 at 17:11
Once you have a nice regex that matches words with [.] and/or ['] in a way you like, simply replace the "input.Split( separators )" with "Regex.Matches( input, wordFindingRegEx )" and I think "s" (our string) would have to become "match.Value" in in 4 places. With the correct RegEx you could also remove the where clause. – Timothy Walters Oct 17 at 17:18
Timothy > not exactly what i want, i've updated my question, hope it should be more clear ... – Yoann. B Oct 17 at 17:34
vote up 0 vote down

You could Regex.Matches(input, pattern).Count or you could do the following:

int count = 0; int startIndex = input.IndexOf(word);
while (startIndex != -1) { ++count; startIndex = input.IndexOf(word, startIndex + 1); }

using LINQ here would be ugly

link|flag

Your Answer

Get an OpenID
or
never shown

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