On 04/03/2008, Tom Fernandes <[EMAIL PROTECTED]> wrote:
> Hi,
>
>  I would like to do multiple replaces with jexl.
>
>  /${__jexl(vars.get("EXTRACTED_URL").replace("&amp;"\,"&"))}
>
>  works so far, but I would also like to replace %20 with space and %2F with /
>  in the same variable.
>
>  How can I do this?

Just chain the replaces.

vars.get("EXTRACTED_URL").replace("&amp;"\,"&").replace("%20"\," ").etc

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

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

Reply via email to