zoukankan      html  css  js  c++  java
  • TrimToDBC 去除输入全角字符方法

        //引用using System.Web.Mvc;
        public class TrimToDBCModelBinder : DefaultModelBinder
        {
            public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
            {
                object value = base.BindModel(controllerContext, bindingContext);
                if (value is string)
                {
                    string strValue = (string)value;
                    string value2 = ToDBC(strValue);
                    return value2;
                }
                else
                {
                    return value;
                }
    
            }
            /// <summary>
            /// 全角转半角字符的函数(DBC case)
            /// </summary>
            /// <param name="input">任意字符串</param>
            /// <returns>全角空格为12288 半角空格为32  其他字符半角(33-126) 全角(65218-65374)</returns>
            private 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);
            }
            //然后在Global 中:
            //ModelBinders.Binders.Add(typeof(string),new TrimToDBCModelBinder() )
  • 相关阅读:
    HDU 4285
    Codeforces 242C
    Codeforces 811C
    Codeforces 883H
    Codeforces 371D
    Codeforces 926E
    牛客算法周周练17 解题报告
    牛客算法周周练17D
    牛客算法周周练17C
    牛客算法周周练17A
  • 原文地址:https://www.cnblogs.com/x666066/p/10295348.html
Copyright © 2011-2022 走看看