Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > C#/.NET技巧

asp.net字符串处理类代码

来源:中文源码网    浏览:207 次    日期:2024-03-29 11:17:57
【下载文档:  asp.net字符串处理类代码.txt 】


asp.net字符串处理类代码
复制代码 代码如下: using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using System.Security.Cryptography; using System.IO; using System.Text; namespace StringClass { public class StringHelper { /// /// 去掉字符串中的所有空格 /// /// /// public static string ReMoveBlank(string _str) { string strTemp = ""; CharEnumerator CEnumerator = _str.GetEnumerator(); while (CEnumerator.MoveNext()) { byte[] array = new byte[1]; array = System.Text.Encoding.ASCII.GetBytes(CEnumerator.Current.ToString()); int asciicode = (short)(array[0]); if (asciicode != 32) { strTemp += CEnumerator.Current.ToString(); } } return strTemp; } /// /// 截取字符串并限制字符串长度,多于给定的长度+。。。 /// /// 待截取的字符串 /// 每行的长度,多于这个长度自动换行 /// 输出字符串最大的长度 /// public static string CutStr(string str, int len, int max) { string s = ""; string sheng = ""; if (str.Length > max) { str = str.Substring(0, max); sheng = ""; } for (int i = 0; i < str.Length; i++) { int r = i % len; int last = (str.Length / len) * len; if (i != 0 && i <= last) { if (r == 0) { s += str.Substring(i - len, len) + "
"; } } else if (i > last) { s += str.Substring(i - 1); break; } } return s + sheng; } /// /// 截取字符串,不限制字符串长度 /// /// 待截取的字符串 /// 每行的长度,多于这个长度自动换行 /// public static string CutStr(string str, int len) { string s = ""; for (int i = 0; i < str.Length; i++) { int r = i % len; int last = (str.Length / len) * len; if (i != 0 && i <= last) { if (r == 0) { s += str.Substring(i - len, len) + "
"; } } else if (i > last) { s += str.Substring(i - 1); break; } } return s; } public static string PartSubString(string str, int len) { if (str.Length > len) { return str.Substring(0, len) + "..."; } return str; } /// ///这个方法确保用户的输入不是恶毒的 /// /// 输入字符串 /// 最大长度 /// 转换后的字符串 public static string InputText(string text, int maxLength) { text = text.Trim(); if (string.IsNullOrEmpty(text)) return string.Empty; if (text.Length > maxLength) text = text.Substring(0, maxLength); text = Regex.Replace(text, "[\\s]{2,}", " "); //two or more spaces text = Regex.Replace(text, "(<[b|B][r|R]/*>)+|(<[p|P](.|\\n)*?>)", "\n"); //
text = Regex.Replace(text, "(\\s*&[n|N][b|B][s|S][p|P];\\s*)+", " "); // text = Regex.Replace(text, "<(.|\\n)*?>", string.Empty); //any other tags text = text.Replace("'", "''"); return text; } /// /// 字符串中大写字符转小写 /// /// /// public static string StringToLower(string str) { Char[] a = str.ToCharArray(); string strTemp = ""; for (int i = 0; i < a.Length; i++) { if (Convert.ToInt32(a[i]) >= 65 && Convert.ToInt32(a[i]) <= 90) strTemp += a[i].ToString().ToLower(); else strTemp += a[i].ToString(); } return strTemp; } /// /// 加密 /// /// /// 必须是8位的字符串 /// public static string Encode(string str, int keyIndex) { ArrayList alKey = new ArrayList(); alKey.Add("BookT@#+!NumBq2"); alKey.Add("MagaZine@(21&*ID5"); alKey.Add("ThesisDSHI}._Y"); string key = alKey[keyIndex].ToString(); DESCryptoServiceProvider provider = new DESCryptoServiceProvider(); provider.Key = Encoding.ASCII.GetBytes(key.Substring(0, 8)); provider.IV = Encoding.ASCII.GetBytes(key.Substring(0, 8)); byte[] bytes = Encoding.GetEncoding("GB2312").GetBytes(str); MemoryStream stream = new MemoryStream(); CryptoStream stream2 = new CryptoStream(stream, provider.CreateEncryptor(), CryptoStreamMode.Write); stream2.Write(bytes, 0, bytes.Length); stream2.FlushFinalBlock(); StringBuilder builder = new StringBuilder(); foreach (byte num in stream.ToArray()) { builder.AppendFormat("{0:X2}", num); } stream.Close(); return builder.ToString(); } /// /// Des 解密 GB2312 /// /// Desc string /// Key ,必须为8位 /// public static string Decode(string str, int keyIndex) { ArrayList alKey = new ArrayList(); alKey.Add("BookT@#+!NumBq2"); alKey.Add("MagaZine@(21&*ID5"); alKey.Add("ThesisDSHI}._Y"); string key = alKey[keyIndex].ToString(); DESCryptoServiceProvider provider = new DESCryptoServiceProvider(); provider.Key = Encoding.ASCII.GetBytes(key.Substring(0, 8)); provider.IV = Encoding.ASCII.GetBytes(key.Substring(0, 8)); byte[] buffer = new byte[str.Length / 2]; for (int i = 0; i < (str.Length / 2); i++) { int num2 = Convert.ToInt32(str.Substring(i * 2, 2), 0x10); buffer[i] = (byte)num2; } MemoryStream stream = new MemoryStream(); CryptoStream stream2 = new CryptoStream(stream, provider.CreateDecryptor(), CryptoStreamMode.Write); stream2.Write(buffer, 0, buffer.Length); stream2.FlushFinalBlock(); stream.Close(); return Encoding.GetEncoding("GB2312").GetString(stream.ToArray()); } /// /// MD5不可逆加密 32位 /// /// /// /// public static string GetMD5_32(string str1) { string cl1 = str1; string pwd = ""; MD5 md5 = MD5.Create(); // 加密后是一个字节类型的数组 byte[] s = md5.ComputeHash(Encoding.Unicode.GetBytes(cl1)); // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得 for (int i = 0; i < s.Length; i++) { // 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符 pwd = pwd + s[i].ToString("x"); } return pwd; } /// /// MD5不可逆加密 16位 /// /// /// public static string GetMd5_16(string ConvertString) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); string t2 = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(ConvertString)), 4, 8); t2 = t2.Replace("-", ""); return t2; } } }

相关内容