On 11/8/06, Aaron Freeman <[EMAIL PROTECTED]> wrote:

It's hard to believe there is not a commons String handling taglib


You're looking in the wrong place. Jakarta Commons doesn't do tag libraries;
Jakarta Taglibs does:

http://jakarta.apache.org/taglibs/

--
Martin Cooper


where all
of the functions available to a String are encapsulated in a .TLD file
like:

  <function>
    <name>replaceAll</name>
    <function-class>com.layerz.util.StringUtil</function-class>
    <function-signature>String replaceAll( java.lang.String,
java.lang.String, java.lang.String )</function-signature>
  </function>

So that you can use them in JSTL like:

<c:set var="variable" value="${string:replaceAll(param.source, param.regex
,
param.replacement}"/>

Maybe this exists and I am overlooking it?

Aaron Freeman


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to