博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多个手机号逗号分开
阅读量:5309 次
发布时间:2019-06-14

本文共 1657 字,大约阅读时间需要 5 分钟。

#region 测试 数组类型的      string[] mobiles = new string[] { "18975887650", "18775887650", "18977487650", "18975887512" };      ///       /// 循环获取多个手机号逗号分开      ///       /// 
public string GetMobile() { string strmobile = ""; for (int i = 0; i < mobiles.Length; i++) { strmobile += mobiles[i] + ","; } if (strmobile.Length > 0) { strmobile = strmobile.Substring(0, strmobile.Length - 1); return strmobile; } return strmobile; } #endregion

数据库中获取:

#region 多个手机号      ///       /// 获取用户电话号码 数据库中获取 数组中多个手机号逗号分开      ///       public string GetMobileNumber()      {          string strmobilenumbers = "";          DataTable dt = jub.Get_Mobile(mu.MobileNumber);          //从数据库中读取手机信息数据          // mobiles = dt.Rows[0]["MobileNumber"].ToString();          //定义数组          string[] mobilenumbers = new string[dt.Rows.Count];          if (dt.Rows.Count > 0)          {              //循环数据              for (int i = 0; i < dt.Rows.Count; i++)              {                  DataRow dr = dt.Rows[i];                  mobilenumbers[i] = dr["MobileNumber"].ToString();//为数组赋值                  strmobilenumbers += mobilenumbers[i] + ",";              }              if (strmobilenumbers.Length > 0)              {                  strmobilenumbers = strmobilenumbers.Substring(0, strmobilenumbers.Length - 1);                  return strmobilenumbers;              }              return strmobilenumbers;          }          return strmobilenumbers;      }      #endregion

 

转载于:https://www.cnblogs.com/Warmsunshine/p/3750083.html

你可能感兴趣的文章
变量和运算符
查看>>
IReport中的如何使用变量进行合计
查看>>
snmp简单使用
查看>>
linux操作系统下查看某rpm包是32bit 还是x64bit的命令
查看>>
分布式服务框架 dubbo/dubbox 入门示例
查看>>
Noip2011提高组总结
查看>>
HDU 4416 Good Article Good sentence(后缀自动机)
查看>>
SpringBoot无法书写主启动类的情况之一
查看>>
Java异常之try,catch,finally,throw,throws
查看>>
胡小兔的良心莫队教程:莫队、带修改莫队、树上莫队
查看>>
Java NIO原理及实例
查看>>
Tomcat 多个虚拟主机配置方法
查看>>
android native c 的so调试
查看>>
Strobogrammatic Number
查看>>
实现在手机浏览器上面打 电话发 短信 定位的 功能
查看>>
Number Sequence
查看>>
莫比乌斯反演
查看>>
Java手机游戏开发简明教程 (SunJava开发者认证程序员 郎锐)
查看>>
python_flask小项目实例-编一个小网站
查看>>
(树直径) bzoj 1509
查看>>