类库------对一些字符串进行操作的类1.判断输入是否数字2.截取字符串函数3.过滤输入信息4.生成随机数5.生成验证码图片6.获取汉字第一个拼音7.半角转全角8.全角转半角

using  System;
using  System.Drawing;
using  System.Web;
using  System.Web.UI;
using  System.Web.UI.WebControls;
using  System.Text.RegularExpressions;
using  System.IO;
using  System.Drawing.Imaging;
using  System.Text;
using  System.Web.Security;

namespace  WeYyzyq.Comp
{
    
/// 
    
/// 对一些字符串进行操作的类
    
/// 创建时间:2006-8-3
    
/// 创建者:马先光
    
/// 

    public class StringUtil
    
{
        
private static string passWord;    //加密字符串

        
/// 
        
/// 判断输入是否数字
        
/// 

        
/// 要判断的字符串
        
/// 

        static public bool VldInt(string num)
        
{
            
...
        }


        
/// 
        
/// 返回文本编辑器替换后的字符串
        
/// 

        
/// 要替换的字符串
        
/// 

        static public string GetHtmlEditReplace(string str)
        
{
            
...
        }


        
/// 
        
/// 截取字符串函数
        
/// 

        
/// 所要截取的字符串
        
/// 截取字符串的长度
        
/// 

        static public string GetSubString(string str, int num)
        
{
            
...
        }


        
/// 
        
/// 过滤输入信息
        
/// 

        
/// 内容
        
/// 最大长度
        
/// 

        public static string InputText(string text, int maxLength)
        
{
            
...
        private string GenerateCheckCode()
        
{
            
...
        }



        
/// 
        
/// 生成验证码图片
        
/// 

        public void CreateCheckCodeImage()
        
{
            
...
        }



        
/// 
        
/// 获取汉字第一个拼音
        
/// 

        
/// 
        
/// 

        static public string getSpells(string input)
        
{
            
...
        }


        
static public string getSpell(string cn)
        
{
            
...
        }



        
/// 
        
/// 半角转全角
        
/// 

        
/// 
        
/// 

        static public string GetQuanJiao(string BJstr)
        
{
            
...
        }


        
/// 
        
/// 全角转半角
        
/// 

        
/// 
        
/// 

        static public string GetBanJiao(string QJstr)
        
{
            
...
        }


        
加密的类型


        
/// 
        
/// 字符串加密
        
/// 

        
/// 要加密的字符串
        
/// 要加密的类别
        
/// 

        static public string EncryptPassword(string PasswordString, string PasswordFormat)
        
{
            
...
        }

        
    }

}

 

你可能感兴趣的:(2.类库相关,3.各种随笔感想,1.c#,asp.net)