The more awesome regular expression substitution

Source: Internet
Author: User
Tags regular expression
String reg = "[(] ([^ (]) * ([\\s]) * ([t,t][o,o]|[ -]| [~] [\\s])
([\\s]) * ([^)]) *[)] ";
String inStr = "Ti=engine and ab= (Turbo Wf5 Jet) and pd= (2001-2009), pd= (2001 ~ 2009)";
String returnstr = null;
String newstr = "";
while (null! = (Returnstr = GetContext (INSTR, Reg))) {//Newstr = Returnstr.replace ("(", "["). Replace (")", "]");
INSTR = Instr.replace (Returnstr, NEWSTR);


}//system.out.println (INSTR); public static string Replacebracerange (String inStr) {string reg = "[(] ([^ (]) * ([\\s]) * ([t,t][o,o]|[ -]| [~]| [\\s])
([\\s]) * ([^)]) *[)] ";
String inStr =//"Ti=engine and ab= (Turbo Wf5 Jet) and Pd= (2001 to), Pd= (2001 ~ 2009)";
String returnstr = null;
String newstr = "";
while (null! = (Returnstr = GetContext (INSTR, Reg))) {newstr = Returnstr.replace ("(", "["). Replace (")", "]");
INSTR = Instr.replace (Returnstr, NEWSTR);
} return INSTR; public static string GetContext (String instr, String reg) {Pattern p = pattern.compile (reg);//Match <title> start,< /title> End of document MATCHer m = P.matcher (instr);//Start compiling if (M.find ()) {return m.group ();//Get the matched part} return null; public boolean Ifcontext (String instr, String reg) {Pattern p = pattern.compile (reg);//Match <title> start, </title&
gt; End document Matcher m = P.matcher (instr);//Start compiling if (M.find ()) {return true;//get the matching part} return false; }


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.