Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi is there away to detect the length of a byte before I get the error message:

Length cannot be less than zero. Parameter name: length

I get the error on this line:

new_username = new_username.Substring(0, new_username.IndexOf(" Joined "))

I am removing the "joined" from the string I get....how can I ignore it is "joined" isnt the the data?

Thanks

share|improve this question

3 Answers

up vote 2 down vote accepted

I would test to see what IndexOf returned before using it in this context:

if(new_username.IndexOf(" Joined") > 0)
{
      new_username = new_username.Substring(0, new_username.IndexOf(" Joined "))
}
share|improve this answer
Thanks! That works great =) – stocksy101 Jan 13 '09 at 15:39
That's inefficient since you're calling IndexOf twice. Best to call once and cache it for use in both places. – ctacke Jan 13 '09 at 15:51
It's probably worth checking the MSIL before doing that optimization - I think the compiler can optimise the second call away where there are no side-effects. – Richard Gadsden Jan 14 '09 at 14:08
@ctake forgive my ignorance, but how would you do that ? Create a new variable ? – spacemonkeys Jan 14 '09 at 16:10

Try this:

new_username = new_Username.Replace(" Joined ", "")

Be warned that this will remove all occurrences of the " Joined " substring rather than just the first.

share|improve this answer
If the initial string has only a username and the optional string " joined", with nothing else, this will work great! – Michael Haren Jan 13 '09 at 15:36
Also provided no one has " joined" as part of their username :/ – Michael Haren Jan 13 '09 at 15:36
@Michael: .IndexOf()-based code would fail in that case as well. – Joel Coehoorn Jan 13 '09 at 15:40

It looks like new_username.IndexOf(" Joined ") is returning -1 meaning the string " Joined" was not found by Substring. I would break this out into two statements:

The error you are seeing is that you are effectively making this call:

new_username = new_username.Substring(0, -1)
share|improve this answer

Your Answer

 
discard

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