在拆分字符串时,索引出现越界异常
本文关键字:越界 异常 索引 拆分 字符串 | 更新日期: 2023-09-27 18:01:15
我已经编写了用于拆分字符串的代码
protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)
{
string oldstr = DropDownList2.SelectedItem.Value;
string[] exp = System.Text.RegularExpressions.Regex.Split(oldstr, "-");
int int1 = Convert.ToInt32(exp[0]);
int int2 = Convert.ToInt32(exp[1]);
}
它给了我例外
"索引超出了数组的界限。">
在线路int int2 = Convert.ToInt32(exp[1]);
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList2_SelectedIndexChanged">
<asp:ListItem></asp:ListItem>
<asp:ListItem Value="1-2">1-2 years</asp:ListItem>
<asp:ListItem Value="3-4 ">3-4 years</asp:ListItem>
<asp:ListItem Value="5-7">5-7 years</asp:ListItem>
</asp:DropDownList>
像这样更新标记
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList2_SelectedIndexChanged">
<asp:ListItem Value="0-0"></asp:ListItem> // add 0 and 0
<asp:ListItem Value="1-2">1-2 years</asp:ListItem>
<asp:ListItem Value="3-4">3-4 years</asp:ListItem>//remove space after 4
<asp:ListItem Value="5-7">5-7 years</asp:ListItem>
</asp:DropDownList>
与其转换,不如像下面这样使用TryParse,并检查拆分数组的长度
//string[] exp = System.Text.RegularExpressions.Regex.Split(oldstr, "-");
//use string split rathre than using regular expression because character split is
// faster than regular expression split
string[] exp = oldstr.Split('-');
if(exp.Length>0)
{
int int1;
if(int.TryParse(exp[0], out num1))
{ // further code }
int int2;
if(int.TryParse(exp[1], out num1))
{ // further code }
}
DropDownList
的第一个元素的Value
是空字符串,当您绑定时,会为第一个元素触发SelectedIndexChanged
事件,拆分它将为您提供零元素数组。在按索引访问数组之前,先对索引应用条件。
int int1 = 0;
if(exp.Length > 0)
int1 = Convert.ToInt32(exp[0]);
int int2 = 0;
if(exp.Length > 1)
int2 = Convert.ToInt32(exp[1]);
或者为第一个元素添加值,如0-1年
<asp:ListItem Value="0-1">Upto one one year</asp:ListItem>