Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got collection of words, and i wanna create collection from this collection limited to 5 chars

Input:

Car
Collection
Limited
stackoverflow

Output:

car
colle
limit
stack

word.Substring(0,5) throws exception (length)

word.Take(10) is not good idea, too...

Any good ideas ??

share|improve this question
5  
You get the exception because car is only 3 characters long and you are asking for a SubString of 5 characters. – Dan Diplo Mar 8 '10 at 15:49
yes, I know. Situation is much more complicated, and this which I 've described to you has a biggest problem which this complicated situation :) – user278618 Mar 8 '10 at 15:51
As cool as LINQ is (and I really think it's cool), how is using it for this better/more readable than an "old fashioned" foreach loop? – JMarsch Mar 8 '10 at 16:06

3 Answers

up vote 15 down vote accepted

LINQ to objects for this scenario? You can do a select as in this:

from w in words
select new
{
  Word = (w.Length > 5) ? w.Substring(0, 5) : w
};

Essentially, ?: gets you around this issue.

share|improve this answer
2  
You should add a check for null elements. That is, var subwords = words.Where(w => w != null).Select(w => w.Length > 5 ? w.Substring(0, 5) : w);. – Jason Mar 8 '10 at 15:59

var words = new [] { "Car", "Collection", "Limited", "stackoverflow" }; IEnumerable<string> cropped = words.Select(word => word.Substring(0, Math.Min(5, word.Length));

share|improve this answer

Something you can do, is

string partialText = text.Substring(0, Math.Min(text.Length, 5));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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