码迷,mamicode.com
首页 > 其他好文 > 详细

判断字符串是否是由相同的字符组成

时间:2019-09-10 00:27:30      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:false   iss   int   bsp   param   color   str   tostring   result   

 

 1 /// <summary>
 2 ///  判断字符串是否是由相同的字符组成 如 aaaa全是a组成的 bbb全是b组成的 ccc全是c组成的
 3 /// </summary>
 4 /// <param name="s"></param>
 5 /// <returns></returns>
 6 public bool IsSameString(string s)
 7 {
 8     bool result = false;
 9     for (int i = 0; i < s.Length; i++)
10     {
11         string a = s[0].ToString();
12         if (a != s[i].ToString())
13         {
14             result = false;
15         }
16         else
17         {
18             result = true;
19         }
20     }
21     return result;
22 }

判断字符串是否是由相同的字符组成

标签:false   iss   int   bsp   param   color   str   tostring   result   

原文地址:https://www.cnblogs.com/xe2011/p/11494917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!