David-

Have you looked at ReplaceRegExp Task from optional.jar..here is the doc
http://ant.apache.org/manual/OptionalTasks/replaceregexp.html
You would be able to replace match with replace for all instances where match 
condition is met
  <replaceregexp file="${src}/build.properties"
                         match="OldProperty=(.*)"
                         replace="NewProperty=\1"
                         byline="true"/>
replaces occurrences of the property name "OldProperty" with "NewProperty" in a 
properties file, preserving the existing value, in the file 
${src}/build.properties

Is this what you're looking for ?

Martin --

*********************************************************************
This email message and any files transmitted with it contain confidential
information intended only for the person(s) to whom this email message is
addressed.  If you have received this email message in error, please notify
the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.



----- Original Message ----- 
From: "David" <[EMAIL PROTECTED]>
To: "Ant Apache User Group" <user@ant.apache.org>
Sent: Monday, May 29, 2006 10:24 AM
Subject: Insert a file into another at given point (not necessary at the end)


> Dear members,
>   
>  I know there is a task concat for inserting at the end of the file another 
> file, but what about to insert something in the middle of another file, I 
> cant define such place for example via regular expression, but I don't know 
> if there is any task for doing that.
>   
>  Thanks,
>   
>  David
> 
> 
> ---------------------------------
> Sneak preview the  all-new Yahoo.com. It's not radically different. Just 
> radically better.

Reply via email to