1 16 package org.apache.taglibs.string; 17 18 import org.apache.taglibs.string.util.StringW; 19 import javax.servlet.jsp.JspException ; 20 21 27 public class QuoteRegexpTag extends StringTagSupport { 28 29 public QuoteRegexpTag() { 30 super(); 31 } 32 33 34 public String changeString(String text) throws JspException { 35 return StringW.quoteRegularExpression(text); 36 } 37 38 public void initAttributes() { 39 40 } 41 42 43 } 44 | Popular Tags |