Hi,

Problem =

i have a property like that :

<bla>foobar</bla>

and i want it to convert to =

<bla>foobar</bla> before putting in
in a mailbody

i've tried =

<propertyregex property="foobar"
                  input="${auftrag.bemerkung}"
                  regexp="lt;"
                  replace="<"
                  casesensitive="false" />

but that is not accepted.

i've tried with javascript =

<script language="javascript"><![CDATA[           
        one=project.getProperty("foobar");
        two=one.replace("&lt;", "<");
        three=two.replace("&gt;", ">");                 
       project.setProperty("foobar", three);
  ]]></script>

doesn't work either, gives me =

org.mozilla.javascript.EvaluatorException: Cannot convert &lt; to
java.lang.Character


Any ideas ??

bye4now, Gilbert

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

Reply via email to