Given an array like {"one two", "three four five"}, how'd you calculate the total number of words contained in it using LINQ?
|
|
|
|
|
|
|
Or if you want to use the C# language extensions:
|
||
|
|
|
You can do it with SelectMany:
SelectMany flattens the resulting sequences into one sequence, and then it projects a whitespace split for each item of the string array... |
||||||||
|
|
|
I think Sum is more readable:
|
||
|
|
|
|
Not an answer to the question (that was to use LINQ to get the combined word count in the array), but to add related information, you can use strings.split and strings.join to do the same: C#:
Vb.Net:
|
||
|
