vote up 0 vote down star

I have this code, is there an easy way to limit the amount of characters displayed to 250?

<%# trimIt(DataBinder.Eval(Container.DataItem, "WebSalesText").ToString())%>

public string trimIt(string s)
{
    if (s.Length > 0 && s.IndexOf(".") > 0)
    {
        return (s.Substring(0, s.IndexOf(".")) + " ...");
    }
    else
    {
        return s;
    }
}
flag

What does the trimIt() function look like? – Andrew Hare Aug 25 at 15:18

3 Answers

vote up 13 vote down check

Are you looking for an implementation of trimIt?

public static string trimIt(string s)
{
   if(s == null)
       return string.Empty;

   int count = Math.Min(s.Length, 250);
   return s.Substring(0, count);
}
link|flag
2  
+1 This is the correct answer. This is the only answer that will work reliably and won't be brittle. – Andrew Hare Aug 25 at 15:22
+1 Same as what Andrew said. – Tchami Aug 25 at 15:27
1  
Not sure how smart is Substring about making copies. Wouldn't something like "if (s.Length <= 250) return s; else return s.Substring(0, 250);" be better? – Filip Navara Aug 25 at 15:29
@Filip: probably not that important but surely a reasonable change. – sixlettervariables Aug 25 at 15:34
Dissasemble System.String using reflector, check InternalSubstring(int, int, bool)... Theres a check for length == this.Length, which will return "this"... – LorenVS Aug 25 at 15:34
show 2 more comments
vote up -1 vote down

This does not work, as SubString will fail for a string shorter than 250 signs.:

<%# trimIt(DataBinder.Eval(Container.DataItem, "WebSalesText").ToString().SubString(0,250))%>

but this (dirty) solution would work:

<%# trimIt(DataBinder.Eval(Container.DataItem, "WebSalesText").ToString().
    SubString(0,Math.min(250,
    DataBinder.Eval(Container.DataItem, "WebSalesText").ToString().Length))
%>
link|flag
Might just be me, but won't this fail if the string is less than 250 characters long? – LorenVS Aug 25 at 15:19
@LorenVS - you are correct. This will throw an exception if the string is too short. – Andrew Hare Aug 25 at 15:21
You are right. Never thought that this would fail. Again I see that testing before posting is a good idea. – StampedeXV Aug 25 at 15:25
I tried it and it failed, thanks for trying though. – jrutter Aug 25 at 15:39
somestring.Substring(0, Math.Min(250, entityName.ToString().Length)) works correctly for me. Well, I think it should stay as a bad example - if someone else tries do make this error. – StampedeXV Aug 26 at 6:36
vote up 6 vote down

You could make an extension method for string to doing what you need and allow you to specify the amount to allow to be the maximum length.

public static string TrimToMaxSize(this string input, int max)
{
   return ((input != null) && (input.Length > max)) ?
       input.Substring(0, max) : input;
}
link|flag
This is the sort of sugar that I like extension methods for... – LorenVS Aug 25 at 15:37
+1 Might I suggest an alternate method name of Shorten()? – grenade Aug 25 at 15:37
Yes Shorten or something else I am sure might be a better name. I just came up with the first thing off the top of my head :) – Kelsey Aug 25 at 15:39

Your Answer

Get an OpenID
or

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