Re: Remove nulll chars from file

2010-07-08 Thread Carlos Garcés
El 01/07/2010 16:44, Stefan Bodewig escribió: On 2010-07-01, Carlos Garcés wrote: There is other way to represent the null char on ant script? Unfortunately there isn't - and you can't even legally add a NUL character to any XML file either (for example� would be invalid). A custom

Re: Remove nulll chars from file

2010-07-01 Thread Stefan Bodewig
On 2010-07-01, Carlos Garcés wrote: > There is other way to represent the null char on ant script? Unfortunately there isn't - and you can't even legally add a NUL character to any XML file either (for example � would be invalid). A custom filter (maybe a scriptfilter using JavaScript) would wor

Remove nulll chars from file

2010-07-01 Thread Carlos Garcés
Hi! I'm trying to remove null chars of one fine generated with exec task, this sin the simplified version: It works with \n, \r, \f, \t and \\ [http://ant.apache.org/manual/Types/filterchain.html#backslash] but not with \0 There is other way to represent the null char on an