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