zoukankan      html  css  js  c++  java
  • 拆分字符串

    split(String.split 方法)

    string YE_Symptom;
    string[] Symptom = YE_Symptom.Split(new char[] { ',' });   //用 "," 作为分割符 返回数组
             for (int i = 0; i < Symptom.Length; i++)
                {
                    for (int j = 0; j < 11; j++)
                    {
                        if (chklist.Items[j].Text == Symptom[i].ToString())
                        {
                            chklist.Items[j].Selected = true;
                        }
                    }
                }

  • 相关阅读:
    Nacos配置管理-什么是配置中心
    MYSQL count
    贷款
    短视频推荐图书
    前端
    err
    err
    Mysql8安装教程
    err
    err
  • 原文地址:https://www.cnblogs.com/zhc088/p/794384.html
Copyright © 2011-2022 走看看