gpt4 book ai didi

c# - 根据 asp.net 中的复选框列表中的选定选项制作相对字符串

转载 作者:行者123 更新时间:2023-11-30 12:56:45 28 4
gpt4 key购买 nike

我正在制作实践管理系统,我需要在其中添加诊所或医院可以在其诊所或医院添加访问医生的功能。下面是mu电流界面。 enter image description here

诊所或医院在这里选择日期并放置时间,以便所有选定的日期都获得该时间。现在我想制作一个字符串,其中的值像这样存储

周一、周三、周五
上午 10 点至下午 2 点

我可以用这段代码执行上面的字符串

string selectedDays = string.Empty;
foreach (ListItem chk in daySelect.Items) {
if (chk.Selected == true) {
selectedDays += chk.Text + ",";
}
}

string vistingDays = string.Empty;
vistingDays = selectedDays + "<br />" + frmTime.SelectedValue.ToString + "-" + ToTime.SelectedValue.ToString;

如果连续选择日期,即 Mon Tue Wed Thu,那么它应该得到这样的字符串值。这里唯一的区别是,如果他们选择连续的超过 2 天,那么它会使用破折号作为分隔符而不是逗号。

周一至周四
上午 10 点 - 下午 2 点

我需要帮助使用我的代码执行上述操作。如果我的帖子像我在这里发布的那样复杂,请原谅,但我真的需要帮助。

最佳答案

不是最易读的解决方案,但它有效,如果有人有某种使用 LINQ 或更少代码的聪明解决方案,我很乐意看到它,但如果没有其他人回答,欢迎您使用我的代码,只需正确测试它所有可能的场景:

protected void btnSave_Click(object sender, EventArgs e)
{
string selectedDays = String.Empty;
int j = 0;

var items = new Dictionary<int,string>();

for (int i = 0; i < daySelect.Items.Count; i++)
items.Add(i, daySelect.Items[i].Selected ? daySelect.Items[i].Text : "");

for (int i = 0; i < items.Count; i++ )
{
string current = items.ElementAt(i).Value;

if(String.IsNullOrEmpty(selectedDays))
{
j = items.ElementAt(i).Key;
selectedDays = current;
continue;
}
else if(current != "")
{
if((j + 1) == i)
{
int lastComma = selectedDays.LastIndexOf(',');
int lastDash = selectedDays.LastIndexOf('-');

if ((selectedDays.Contains('-') && !selectedDays.Contains(',')) || lastDash > lastComma)
{
string day = selectedDays.Substring(selectedDays.LastIndexOf('-') + 1, 3);
selectedDays = selectedDays.Replace(day, current);
}
else
selectedDays += ("-" + current);

j = items.ElementAt(i).Key;
}
else
{
selectedDays += "," + current;
j = items.ElementAt(i).Key;
}
}
}

string vistingDays = selectedDays + "<br />" + frmTime.SelectedValue.ToString() + "-" + ToTime.SelectedValue.ToString();
}

关于c# - 根据 asp.net 中的复选框列表中的选定选项制作相对字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38712626/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com