は、私は私のC#コードで、次の方法があります。どのようにこのコードで可能です: "ArgumentOutOfRangeException:startIndexは文字列の長さを超えることはできません"?
/// <summary>
/// Removes the first (leftmost) occurence of a <paramref name="substring"/> from a <paramref name="string"/>.
/// </summary>
/// <param name="string">The string to remove the <paramref name="substring"/> from. Cannot be <c>null</c>.</param>
/// <param name="substring">The substring to look for and remove from the <paramref name="string"/>. Cannot be <c>null</c>.</param>
/// <returns>
/// The rest of the <paramref name="string"/>, after the first (leftmost) occurence of the <paramref name="substring"/> in it (if any) has been removed.
/// </returns>
/// <remarks>
/// <list type="bullet">
/// <item>If the <paramref name="substring"/> does not occur within the <paramref name="string"/>, the <paramref name="string"/> is returned intact.</item>
/// <item>If the <paramref name="substring"/> has exactly one occurence within the <paramref name="string"/>, that occurence is removed, and the rest of the <paramref name="string"/> is returned.</item>
/// <item>If the <paramref name="substring"/> has several occurences within the <paramref name="substring"/>, the first (leftmost) occurence is removed, and the rest of the <paramref name="string"/> is returned.</item>
/// </list>
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="string"/> is <c>null</c>. -or- The <paramref name="substring"/> is <c>null</c>.
/// </exception>
public static string RemoveSubstring(string @string, string substring)
{
if (@string == null)
throw new ArgumentNullException("string");
if (substring == null)
throw new ArgumentNullException("substring");
var index = @string.IndexOf(substring);
return index == -1
? @string
: @string.Substring(0, index) + @string.Substring(index + substring.Length);
}
実装は非常にシンプルかつ明白に見え、ユニットテストで優れたカバレッジを持っています。マシン、ビルドサーバー、またはアクセス権を持つ他のマシンや、ほとんどの実稼働環境で予期しない結果が発生したことはありません。
一つだけのリモート顧客は時折、次のスタックトレースで、この方法でアプリケーションのクラッシュを報告することを除い:残念ながら
System.ArgumentOutOfRangeException: startIndex cannot be larger than length of string.
Parameter name: startIndex
at System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy)
at System.String.Substring(Int32 startIndex)
at MyNamespace.StringUtils.RemoveSubstring(String string, String substring)
at ...
、私はこの本番環境へまたはそのデータへのリモートアクセスを持っていない、または追加情報に何らかの理由で、現在私はそこにロギングシステムやクラッシュダンプの収集を展開することができません。
コードを見て、さまざまな引数の組み合わせを試してみると、この例外がどのように起こる可能性があるのか想像できません。
いくつかのアイデアを私に教えてください。
IndexOfは培養特異的である。インデックスの変更方法については、examples [here](http://msdn.microsoft.com/en-us/library/ms224425.aspx)を参照してください。 –
String.Remove(Int32、Int32)メソッドを使用する方がよい場合があります。より寛容に思えるかもしれません。 ':@ string.Remove(index、substring.Length)' – tinstaafl