当前位置:  编程技术>.net/c#/asp.net

asp.net字符串处理类代码

    来源: 互联网  发布时间:2014-08-30

    本文导语:  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 ...

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)
{
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)
{
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, "()+|()", "n"); //

text = Regex.Replace(text, "(\s*&[n|N][b|B][s|S][p|P];\s*)+", " "); //
text = Regex.Replace(text, "", 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])

    
 
 

您可能感兴趣的文章:

  • asp 正则 过滤重复字符串的代码
  • asp+正则获得字符串中最后一个字母非字母不算
  • asp正则过滤重复字符串的代码
  • JSP中如何删除字符串的前后空格的,asp中是Ltrim和Rtrim,JSP中是什么呢?在线等待
  • asp.net中利用正则表达式判断一个字符串是否为数字的代码
  • asp中的replace可以替换掉掉变量字符串中的字符,在jsp中用什么?请举例.
  • asp.net字符串转换 123456789转换为12-345-6789的3种方法
  • Asp.Net中的字符串和HTML十进制编码转换实现代码
  • asp.net 3.5中在web.config文件创建ACCESS连接字符串的方法
  • asp.net(c#) 使用Rex正则来生成字符串数组的代码
  • asp.net Split分割字符串的3种用法
  • asp.net字符串分割函数使用方法分享
  • asp.net web.config配置连接字符串的方法
  • asp.net中C#获取字符串中汉字的个数的具体实现方法
  • ASP.NET JSON字符串与实体类的互转换示例代码
  • asp常用的正则表达式实现字符串的替换
  • asp.net交换两个指定位置字符的4种方法
  • asp.net数字、字符相混合的验证码示例
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • c#/ASP.NET操作cookie(读写)代码示例
  • ??谁能把ASP代码改为JSP的
  • asp.net文字水印功能简单代码
  • asp连接sql server 2005的代码
  • asp.net读取本地与全局资料文件的代码
  • asp.net 获取目录中图片的代码
  • asp.net正则表达式提取中文的代码示例
  • 如何在ASP的frame框架中屏蔽右键,以防止查看页面的源代码?
  • asp去掉html,保留img br p div的正则实现代码
  • asp.net使用mshtml处理html的代码
  • asp.net 判断当前日期是该年中第几周的代码
  • asp.net弹出消息框、确认框的代码汇总
  • asp.net 获取ashx中数据的代码
  • asp.net防止页面刷新重复提交的代码
  • asp.net读取txt文件内容的代码
  • asp.net文件分块下载的实现代码
  • asp.net 正则表达式匹配图片路径的实现代码
  • [asp]中的正则表达式运用代码
  • asp.net简单的文件上传代码
  • asp.net静态方法弹出对话框的一例代码
  • asp.net禁止重复提交示例代码
  • ASP.NET之 Ajax相关知识介绍及组件图
  • 我想了解一些关于Java怎样与Asp或Asp.net结合方面在未来发展方向的问题?
  • asp.net UrlEncode对应asp urlencode的处理方法
  • asp.net实例 定义和使用asp:AccessDataSource
  • win2008 r2 服务器环境配置(FTP/ASP/ASP.Net/PHP)
  • asp与asp.net的session共享
  • 如何在unix下发布asp?
  • 怎么让Apache支持Asp?
  • Linux平台下哪种方法实现ASP好?
  • ASP和ASP.Net共享Session解决办法




  • 特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3