On Mon, 23 Sep 2002, <[EMAIL PROTECTED]> wrote:

> I'm trying to use <replaceregexp> to process csv files to remove
> semi-colons at the end of each line.

Untested:

<replaceregexp file="temptest.csv" match=";$" replace=""
               byline="true" />

If you want to reuse the result of a mtach like this one indicates

> <replaceregexp file="temptest.csv" match=".;$" replace="\1$"
> byline="true" />

you need to use parens like in

<replaceregexp file="temptest.csv" match="(.);$" replace="\1$"
               byline="true" />

Stefan

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

Reply via email to