判断和字符串截取的问题!!在线的大侠帮忙看看啊
if ("/" != arr.Substring(2,arr.IndexOf("/")+1))
{
…………
}
这句判断 加截取 再加读取位数的代码有问题!!
未处理的异常: System.ArgumentOutOfRangeException: 索引和长度必须引用该字符串内
的位置。
参数名: length
在 System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length,
Boolean fAlwaysCopy)
将代码改为:if ("/" != arr.Substring(2,3))
{
…………
}
未处理的异常: System.ArgumentOutOfRangeException: 索引和长度必须引用该字符串内
的位置。
参数名: length
在 System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length,
Boolean fAlwaysCopy)
在线的大侠们帮忙看下啊!!!
[ 本帖最后由 云间小鸟 于 2012-1-10 00:26 编辑 ]