我正在制作实践管理系统,我需要添加功能,诊所或医院可以在诊所或医院中添加访问医生。以下是mu current interface。
诊所或医院选择白天和把时间放在一起让所有选定的日子都到了。现在我想创建一个字符串,其值存储如下
星期一,星期三,星期五
上午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.00 - 下午02.00我希望帮助我的代码执行上述操作。请原谅我的帖子是否比我在这里发布的方式复杂,但我真的需要帮助。
答案 0 :(得分:0)
不是最易读的解决方案,但它有效,如果有人使用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();
}