博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#通用类库整理--字符串处理类
阅读量:5149 次
发布时间:2019-06-13

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

   在程序开发中通常需要将字符串转为自己想要的结果,以下三个类库主要实现:

     1、GetStrArray(string str, char speater, bool toLower)  把字符串按照分隔符转换成 List

     2、GetStrArray(string str) 把字符串转 按照, 分割 换为数据

     3、GetArrayStr(List list, string speater) 把 List 按照分隔符组装成 string

     4、GetArrayStr(List list)  得到数组列表以逗号分隔的字符串

     5、GetArrayValueStr(Dictionary<int, int> list)得到数组列表以逗号分隔的字符串

     6、DelLastComma(string str)删除最后结尾的一个逗号

     7、DelLastChar(string str, string strchar)删除最后结尾的指定字符后的字符

     8、ToSBC(string input)转全角的函数(SBC case)

     9、ToDBC(string input)转半角的函数(SBC case)

     10、GetSubStringList(string o_str, char sepeater)把字符串按照指定分隔符装成 List 去除重复

     11、GetCleanStyle(string StrList, string SplitString)将字符串样式转换为纯字符串

     12、GetNewStyle(string StrList, string NewStyle, string SplitString, out string Error)将字符串转换为新样式

     13、SplitMulti(string str, string splitstr)分割字符串

     14、SqlSafeString(string String, bool IsDel)

     15、RepairZero(string text, int limitedLength)补足位数

     16、ConvertBase(string value, int from, int to)各进制数间转换

     17、BytesToString(byte[] bytes, Encoding encoding)使用指定字符集将string,byte[]互换

     18、GetRandomInt(int minNum, int maxNum)生成一个指定范围的随机整数

     19、GetRandomArray<T>(T[] arr)对一个数组进行随机排序

     20、convertCh(string Chstr) 汉字转换成全拼的拼音

 

public  class StringHelper    {        ///         /// 把字符串按照分隔符转换成 List        ///         /// 源字符串        /// 分隔符        /// 是否转换为小写        /// 
public static List
GetStrArray(string str, char speater, bool toLower) { List
list = new List
(); string[] ss = str.Split(speater); foreach (string s in ss) { if (!string.IsNullOrEmpty(s) && s != speater.ToString()) { string strVal = s; if (toLower) { strVal = s.ToLower(); } list.Add(strVal); } } return list; } ///
/// 把字符串转 按照, 分割 换为数据 /// ///
///
public static string[] GetStrArray(string str) { return str.Split(new Char[] { ',' }); } ///
/// 把 List
按照分隔符组装成 string ///
///
///
///
public static string GetArrayStr(List
list, string speater) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < list.Count; i++) { if (i == list.Count - 1) { sb.Append(list[i]); } else { sb.Append(list[i]); sb.Append(speater); } } return sb.ToString(); } ///
/// 得到数组列表以逗号分隔的字符串 /// ///
///
public static string GetArrayStr(List
list) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < list.Count; i++) { if (i == list.Count - 1) { sb.Append(list[i].ToString()); } else { sb.Append(list[i]); sb.Append(","); } } return sb.ToString(); } ///
/// 得到数组列表以逗号分隔的字符串 /// ///
///
public static string GetArrayValueStr(Dictionary
list) { StringBuilder sb = new StringBuilder(); foreach (KeyValuePair
kvp in list) { sb.Append(kvp.Value + ","); } if (list.Count > 0) { return DelLastComma(sb.ToString()); } else { return ""; } } #region 删除最后一个字符之后的字符 ///
/// 删除最后结尾的一个逗号 /// public static string DelLastComma(string str) { return str.Substring(0, str.LastIndexOf(",")); } ///
/// 删除最后结尾的指定字符后的字符 /// public static string DelLastChar(string str, string strchar) { return str.Substring(0, str.LastIndexOf(strchar)); } #endregion ///
/// 转全角的函数(SBC case) /// ///
///
public static string ToSBC(string input) { //半角转全角: char[] c = input.ToCharArray(); for (int i = 0; i < c.Length; i++) { if (c[i] == 32) { c[i] = (char)12288; continue; } if (c[i] < 127) c[i] = (char)(c[i] + 65248); } return new string(c); } ///
/// 转半角的函数(SBC case) /// ///
输入 ///
public static string ToDBC(string input) { char[] c = input.ToCharArray(); for (int i = 0; i < c.Length; i++) { if (c[i] == 12288) { c[i] = (char)32; continue; } if (c[i] > 65280 && c[i] < 65375) c[i] = (char)(c[i] - 65248); } return new string(c); } ///
/// 把字符串按照指定分隔符装成 List 去除重复 /// ///
///
///
public static List
GetSubStringList(string o_str, char sepeater) { List
list = new List
(); string[] ss = o_str.Split(sepeater); foreach (string s in ss) { if (!string.IsNullOrEmpty(s) && s != sepeater.ToString()) { list.Add(s); } } return list; } #region 将字符串样式转换为纯字符串 ///
/// 将字符串样式转换为纯字符串 /// ///
///
///
public static string GetCleanStyle(string StrList, string SplitString) { string RetrunValue = ""; //如果为空,返回空值 if (StrList == null) { RetrunValue = ""; } else { //返回去掉分隔符 string NewString = ""; NewString = StrList.Replace(SplitString, ""); RetrunValue = NewString; } return RetrunValue; } #endregion #region 将字符串转换为新样式 ///
/// 将字符串转换为新样式 /// ///
///
///
///
///
public static string GetNewStyle(string StrList, string NewStyle, string SplitString, out string Error) { string ReturnValue = ""; //如果输入空值,返回空,并给出错误提示 if (StrList == null) { ReturnValue = ""; Error = "请输入需要划分格式的字符串"; } else { //检查传入的字符串长度和样式是否匹配,如果不匹配,则说明使用错误。给出错误信息并返回空值 int strListLength = StrList.Length; int NewStyleLength = GetCleanStyle(NewStyle, SplitString).Length; if (strListLength != NewStyleLength) { ReturnValue = ""; Error = "样式格式的长度与输入的字符长度不符,请重新输入"; } else { //检查新样式中分隔符的位置 string Lengstr = ""; for (int i = 0; i < NewStyle.Length; i++) { if (NewStyle.Substring(i, 1) == SplitString) { Lengstr = Lengstr + "," + i; } } if (Lengstr != "") { Lengstr = Lengstr.Substring(1); } //将分隔符放在新样式中的位置 string[] str = Lengstr.Split(','); foreach (string bb in str) { StrList = StrList.Insert(int.Parse(bb), SplitString); } //给出最后的结果 ReturnValue = StrList; //因为是正常的输出,没有错误 Error = ""; } } return ReturnValue; } #endregion ///
/// 分割字符串 /// ///
///
///
public static string[] SplitMulti(string str, string splitstr) { string[] strArray = null; if ((str != null) && (str != "")) { strArray = new Regex(splitstr).Split(str); } return strArray; } public static string SqlSafeString(string String, bool IsDel) { if (IsDel) { String = String.Replace("'", ""); String = String.Replace("\"", ""); return String; } String = String.Replace("'", "'"); String = String.Replace("\"", """); return String; } #region 获取正确的Id,如果不是正整数,返回0 ///
/// 获取正确的Id,如果不是正整数,返回0 /// ///
///
返回正确的整数ID,失败返回0
public static int StrToId(string _value) { if (IsNumberId(_value)) return int.Parse(_value); else return 0; } #endregion #region 检查一个字符串是否是纯数字构成的,一般用于查询字符串参数的有效性验证。 ///
/// 检查一个字符串是否是纯数字构成的,一般用于查询字符串参数的有效性验证。(0除外) /// ///
需验证的字符串。。 ///
是否合法的bool值。
public static bool IsNumberId(string _value) { return QuickValidate("^[1-9]*[0-9]*$", _value); } #endregion #region 快速验证一个字符串是否符合指定的正则表达式。 ///
/// 快速验证一个字符串是否符合指定的正则表达式。 /// ///
正则表达式的内容。 ///
需验证的字符串。 ///
是否合法的bool值。
public static bool QuickValidate(string _express, string _value) { if (_value == null) return false; Regex myRegex = new Regex(_express); if (_value.Length == 0) { return false; } return myRegex.IsMatch(_value); } #endregion #region 根据配置对指定字符串进行 MD5 加密 ///
/// 根据配置对指定字符串进行 MD5 加密 /// ///
///
public static string GetMD5(string s) { //md5加密 s = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(s, "md5").ToString(); return s.ToLower().Substring(8, 16); } #endregion #region 得到字符串长度,一个汉字长度为2 ///
/// 得到字符串长度,一个汉字长度为2 /// ///
参数字符串 ///
public static int StrLength(string inputString) { System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding(); int tempLen = 0; byte[] s = ascii.GetBytes(inputString); for (int i = 0; i < s.Length; i++) { if ((int)s[i] == 63) tempLen += 2; else tempLen += 1; } return tempLen; } #endregion #region 截取指定长度字符串 ///
/// 截取指定长度字符串 /// ///
要处理的字符串 ///
指定长度 ///
返回处理后的字符串
public static string ClipString(string inputString, int len) { bool isShowFix = false; if (len % 2 == 1) { isShowFix = true; len--; } System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding(); int tempLen = 0; string tempString = ""; byte[] s = ascii.GetBytes(inputString); for (int i = 0; i < s.Length; i++) { if ((int)s[i] == 63) tempLen += 2; else tempLen += 1; try { tempString += inputString.Substring(i, 1); } catch { break; } if (tempLen > len) break; } byte[] mybyte = System.Text.Encoding.Default.GetBytes(inputString); if (isShowFix && mybyte.Length > len) tempString += "…"; return tempString; } #endregion #region HTML转行成TEXT ///
/// HTML转行成TEXT /// ///
///
public static string HtmlToTxt(string strHtml) { string[] aryReg ={ @"
]*?>.*?", @"<(\/\s*)?!?((\w+:)?\w+)(\w+(\s*=?\s*(([""'])(\\[""'tbnr]|[^\7])*?\7|\w+)|.{0})|\s)*?(\/\s*)?>", @"([\r\n])[\s]+", @"&(quot|#34);", @"&(amp|#38);", @"&(lt|#60);", @"&(gt|#62);", @"&(nbsp|#160);", @"&(iexcl|#161);", @"&(cent|#162);", @"&(pound|#163);", @"&(copy|#169);", @"&#(\d+);", @"-->", @"
字符串操作类
public class RandomHelper    {        //随机数对象        private Random _random;        #region 构造函数        ///         /// 构造函数        ///         public RandomHelper()        {            //为随机数对象赋值            this._random = new Random();        }        #endregion        #region 生成一个指定范围的随机整数        ///         /// 生成一个指定范围的随机整数,该随机数范围包括最小值,但不包括最大值        ///         /// 最小值        /// 最大值        public int GetRandomInt(int minNum, int maxNum)        {            return this._random.Next(minNum, maxNum);        }        #endregion        #region 生成一个0.0到1.0的随机小数        ///         /// 生成一个0.0到1.0的随机小数        ///         public double GetRandomDouble()        {            return this._random.NextDouble();        }        #endregion        #region 对一个数组进行随机排序        ///         /// 对一个数组进行随机排序        ///         /// 
数组的类型
/// 需要随机排序的数组 public void GetRandomArray
(T[] arr) { //对数组进行随机排序的算法:随机选择两个位置,将两个位置上的值交换 //交换的次数,这里使用数组的长度作为交换次数 int count = arr.Length; //开始交换 for (int i = 0; i < count; i++) { //生成两个随机数位置 int randomNum1 = GetRandomInt(0, arr.Length); int randomNum2 = GetRandomInt(0, arr.Length); //定义临时变量 T temp; //交换两个随机数位置的值 temp = arr[randomNum1]; arr[randomNum1] = arr[randomNum2]; arr[randomNum2] = temp; } } #endregion public class BaseRandom { public static int Minimum = 100000; public static int Maximal = 999999; public static int RandomLength = 6; private static string RandomString = "0123456789ABCDEFGHIJKMLNOPQRSTUVWXYZ"; private static Random Random = new Random(DateTime.Now.Second); #region public static string GetRandomString() 产生随机字符 ///
/// 产生随机字符 /// ///
字符串
public static string GetRandomString() { string returnValue = string.Empty; for (int i = 0; i < RandomLength; i++) { int r = Random.Next(0, RandomString.Length - 1); returnValue += RandomString[r]; } return returnValue; } #endregion #region public static int GetRandom() ///
/// 产生随机数 /// ///
随机数
public static int GetRandom() { return Random.Next(Minimum, Maximal); } #endregion #region public static int GetRandom(int minimum, int maximal) ///
/// 产生随机数 /// ///
最小值 ///
最大值 ///
随机数
public static int GetRandom(int minimum, int maximal) { return Random.Next(minimum, maximal); } #endregion } public class RandomOperate { // 一:随机生成不重复数字字符串 private int rep = 0; public string GenerateCheckCodeNum(int codeCount) { string str = string.Empty; long num2 = DateTime.Now.Ticks + this.rep; this.rep++; Random random = new Random(((int)(((ulong)num2) & 0xffffffffL)) | ((int)(num2 >> this.rep))); for (int i = 0; i < codeCount; i++) { int num = random.Next(); str = str + ((char)(0x30 + ((ushort)(num % 10)))).ToString(); } return str; } //方法二:随机生成字符串(数字和字母混和) public string GenerateCheckCode(int codeCount) { string str = string.Empty; long num2 = DateTime.Now.Ticks + this.rep; this.rep++; Random random = new Random(((int)(((ulong)num2) & 0xffffffffL)) | ((int)(num2 >> this.rep))); for (int i = 0; i < codeCount; i++) { char ch; int num = random.Next(); if ((num % 2) == 0) { ch = (char)(0x30 + ((ushort)(num % 10))); } else { ch = (char)(0x41 + ((ushort)(num % 0x1a))); } str = str + ch.ToString(); } return str; } #region ///
/// 从字符串里随机得到,规定个数的字符串. /// ///
///
///
private string GetRandomCode(string allChar, int CodeCount) { //string allChar = "1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,i,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z"; string[] allCharArray = allChar.Split(','); string RandomCode = ""; int temp = -1; Random rand = new Random(); for (int i = 0; i < CodeCount; i++) { if (temp != -1) { rand = new Random(temp * i * ((int)DateTime.Now.Ticks)); } int t = rand.Next(allCharArray.Length - 1); while (temp == t) { t = rand.Next(allCharArray.Length - 1); } temp = t; RandomCode += allCharArray[t]; } return RandomCode; } #endregion } }
随机数对象
public sealed class ConvertHelper    {        #region 补足位数        ///         /// 指定字符串的固定长度,如果字符串小于固定长度,        /// 则在字符串的前面补足零,可设置的固定长度最大为9位        ///         /// 原始字符串        /// 字符串的固定长度        public static string RepairZero(string text, int limitedLength)        {            //补足0的字符串            string temp = "";            //补足0            for (int i = 0; i < limitedLength - text.Length; i++)            {                temp += "0";            }            //连接text            temp += text;            //返回补足0的字符串            return temp;        }        #endregion        #region 各进制数间转换        ///         /// 实现各进制数间的转换。ConvertBase("15",10,16)表示将十进制数15转换为16进制的数。        ///         /// 要转换的值,即原值        /// 原值的进制,只能是2,8,10,16四个值。        /// 要转换到的目标进制,只能是2,8,10,16四个值。        public static string ConvertBase(string value, int from, int to)        {            try            {                int intValue = Convert.ToInt32(value, from);  //先转成10进制                string result = Convert.ToString(intValue, to);  //再转成目标进制                if (to == 2)                {                    int resultLength = result.Length;  //获取二进制的长度                    switch (resultLength)                    {                        case 7:                            result = "0" + result;                            break;                        case 6:                            result = "00" + result;                            break;                        case 5:                            result = "000" + result;                            break;                        case 4:                            result = "0000" + result;                            break;                        case 3:                            result = "00000" + result;                            break;                    }                }                return result;            }            catch            {                //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message);                return "0";            }        }        #endregion        #region 使用指定字符集将string转换成byte[]        ///         /// 使用指定字符集将string转换成byte[]        ///         /// 要转换的字符串        /// 字符编码        public static byte[] StringToBytes(string text, Encoding encoding)        {            return encoding.GetBytes(text);        }        #endregion        #region 使用指定字符集将byte[]转换成string        ///         /// 使用指定字符集将byte[]转换成string        ///         /// 要转换的字节数组        /// 字符编码        public static string BytesToString(byte[] bytes, Encoding encoding)        {            return encoding.GetString(bytes);        }        #endregion        #region 将byte[]转换成int        ///         /// 将byte[]转换成int        ///         /// 需要转换成整数的byte数组        public static int BytesToInt32(byte[] data)        {            //如果传入的字节数组长度小于4,则返回0            if (data.Length < 4)            {                return 0;            }            //定义要返回的整数            int num = 0;            //如果传入的字节数组长度大于4,需要进行处理            if (data.Length >= 4)            {                //创建一个临时缓冲区                byte[] tempBuffer = new byte[4];                //将传入的字节数组的前4个字节复制到临时缓冲区                Buffer.BlockCopy(data, 0, tempBuffer, 0, 4);                //将临时缓冲区的值转换成整数,并赋给num                num = BitConverter.ToInt32(tempBuffer, 0);            }            //返回整数            return num;        }        #endregion    }
数据类型转换,数制转换、编码转换相关的类

 

 

 

转载于:https://www.cnblogs.com/wangchao1990/p/7200500.html

你可能感兴趣的文章
拜耳药厂的止痛药
查看>>
工人师傅们效率真高
查看>>
SU suchart命令学习
查看>>
【先定一个小目标】Windows下安装MongoDB 3.2
查看>>
[LeetCode] 560. Subarray Sum Equals K 子数组和为K
查看>>
[LeetCode] 211. Add and Search Word - Data structure design 添加和查找单词-数据结构设计
查看>>
50队列:报数
查看>>
form表单用ge方式提交时ie显示中文参数乱码
查看>>
Java 8 – Convert List to Map
查看>>
并查集的删除操作
查看>>
Part3_lesson4---协处理器访问指令
查看>>
Asp.Net url参数加密存在特殊符号处理方法
查看>>
css3
查看>>
强化学习(五)用时序差分法(TD)求解
查看>>
Python打卡第三周
查看>>
oracle按照in的顺序进行排序
查看>>
Inferred type 'S' for type parameter 'S' is not within its bound;
查看>>
objective里面的单例模式
查看>>
Git常用命令
查看>>
jQuery 遍历
查看>>