${var} variable substitution

Source: Internet
Author: User

${age},${name} Given a context map<string,string> context replaces variables with contexts
Private Static FinalPattern Var_pattern =Pattern.compile ("\\$\\{[^\\}\\$\u0020]+\\}"); Private Static Final intMax_subst = 20; Private StaticString Substitutevars (String expr,map<string,string>Parammap) { if(Expr = =NULL) { return NULL; } Matcher Match= Var_pattern.matcher (""); String Eval=expr; for(ints=0; s<max_subst; s++) {match.reset (eval); if(!Match.find ()) { returneval; } String var=Match.group (); var= Var.substring (2, Var.length ()-1);//Remove ${ .String val =NULL; Try{val=Parammap.get (VAR); } Catch(SecurityException se) {}/*if (val = = null) {val = "AA"; }*/ if(val = =NULL) { returnEval//return literal ${var}: Var is unbound } //Substituteeval = eval.substring (0, Match.start ()) +val+eval.substring (Match.end ()); } Throw NewIllegalStateException ("Variable substitution depth too large:" + Max_subst + " " +expr); }

${var} variable substitution

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.