IIRC ant-contrib has a task that can do regex replacements on properties.
--
Jeffrey E. Care ([EMAIL PROTECTED])
WAS Pyxis Lead Release Engineer
Matthew Hughes <[EMAIL PROTECTED]> wrote on 02/03/2006 12:33:20 PM:
> I have a property
>
> <property name="version" value="7.6.1" />
>
> In certain tasks, I want the version value to be "7_6_1" with
> underscores replacing the periods. How do I create a new property that
> would have this value. I know how to use filters to filter tokens when
> copying files, but I can't seem to figure out how to do that for the
> value of a property.
>
> e.g. I want to do something like this:
>
> <filterset id="replace.version">
> <filter token="." value="_" />
> </filterset>
>
> <property name="friendly.version" value="${version}
> filterid="replace.version" />
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>