On May 2, 2007, at 7:10 PM, Ryan McKinley wrote:
and want: <copyField source="tag_(.*)" dest="text_\1" />
Why even bother with regexs at all?
<copyField source="tag_*" dest="text_*" />
simply replace the * match in the source in the * position in the
dest. Granted it doesn't have the power of regex to morph things
across, but maybe a simple glob/replace is all that is needed?
Erik
