Replace special symbols

Source: Internet
Author: User

public class Basereplacestring {/* < < less than or display tag > > greater than Sign or display tag & & can be used to display other special characters "" quotation marks  ? ? Already registered?? Copyright?? Trademark?? Half a space?? A blank bit   continuous line blank */private static string[] Htmlspecialcharacter = new string[]{"<", ">", "&", "?", "?"    , "?", "?", "?", " "}; private static string[] Commonspecialcharacter = new string[]{"<", ">", "&", "\" "," "", "", "!", "@", "#", "\\$ ","% "," \\* "," \\^ "," \ \ "," \ \ "," _ "," \\+ "," \\= "," \\-",", "," \ \ ",", ",".    "," \ \ "," ' "," ~ "," "", "" ",". com ",". cn ",". Net "," org "," www "}; /** * Filter HTML special characters * @param specialcharacterstr * @return * */public static String Htmlspecialcharacterrem        Over (String specialcharacterstr) {int length = Htmlspecialcharacter.length; for (int i = 0; i < length; i++) {specialcharacterstr = Specialcharacterstr.replace (Htmlspecialcharacter[i]        , "");    } return SPECIALCHARACTERSTR; }/** * Filter the NormalSpecial characters * @param specialcharacterstr * @return * * public static string Commonsspecialcharacterremover (string s        PECIALCHARACTERSTR) {int length = Commonspecialcharacter.length; for (int i = 0; i < length; i++) {specialcharacterstr = Specialcharacterstr.replace (commonspecialcharacter[        I], "");    } return SPECIALCHARACTERSTR; }/** * All special characters replace * @param specialcharacterstr * @return * */public static String Specialcharacterremo        Ver (String specialcharacterstr) {specialcharacterstr = Htmlspecialcharacterremover (SPECIALCHARACTERSTR);        Specialcharacterstr = Commonsspecialcharacterremover (SPECIALCHARACTERSTR);    return specialcharacterstr; }}

Company comments this not only needs to judge the sensitive word also need to do some special treatment of content, today finishing, you can stay with

Replace special symbols

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.