C # Tab Filtering processing method

Source: Internet
Author: User
Tags control characters

C # Tab Filter processing method, dynamically replace the characters inside the character box.

    <summary>//Descrioption:///need to replace the character set, see MSDN//The Trim method only trims 0x0009, 0x000a, 0x00    0b, 0x000c, 0x000d, 0x0085, 0x2028, and 0x2029.    This is the array adds in control characters. Author: Hui Yifang//Create date:2014-03-06//<summary> public static readonly char[] Whitespacechar s = new char[] {(char) 0x00, (char) 0x01, (char) 0x02, (char) 0x03, (char) 0x04, (char) 0x05, (char) 0x06, (char) 0x0  7, (char) 0x08, (char) 0x09, (char) 0x0a, (char) 0x0b, (char) 0x0c, (char) 0x0d, (char) 0x0e, (char) 0x0f, (char) 0x10,            (char) 0x11, (char) 0x12, (char) 0x13, (char) 0x14, (char) 0x15, (char) 0x16, (char) 0x17, (char) 0x18, (char) 0x19, (char) 0x20, (char) 0x1a, (char) 0x1b, (char) 0x1c, (char) 0x1d, (char) 0x1e, (char) 0x1f, (char) 0x7f, (char) 0x85, (char) 0x2028, (  char) 0x2029, (char) 0x0027, (char) 0x0022, (char) 0x005c, (char) 0x0000, (char) 0x0007, (char) 0x0008, (char) 0x000c, (char) 0x000A, (char) 0x000d, (char) 0x0009, (char)0X000B}; <summary>//Descrioption://empty blank characters///Author: Hui Yifang//Create date:2014-03-06//</  summary>//<param name= "value" ></param>///<returns></returns> public static string Notnullorblank (This string value) {string result = string.        Empty; if (!string. IsNullOrEmpty (value)) {result = value.        Trim (Whitespacechars); } if (!string.        IsNullOrEmpty (Result)) {result = Stringtopattern (result);    } return result; }///<summary>//descrioption://Replacement Tab///Author: Hui Yifang//Create date:2014-03-06// lt;/summary>//</summary>//<param name= "Content" > What to filter </param>//<returns> return filter Finished content </returns> public static string Stringtopattern (string content) {if (content. Trim (). Equals ("")) {return string.        Empty; } ELSE {for (int i = 0; i < whitespacechars.length; i++) {content = content. Replace (Whitespacechars[i].            ToString (), "");    }} return content; }


C # Tab Filtering processing method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.