Does anyone have an example of acceptable syntax for using a regexp mapper in a
pathconvert?
I've tried many ways, but none work. The documentation says more complex nested
mappers are supported. http://ant.apache.org/manual/CoreTasks/pathconvert.html
Thanks, Mike
<!-- strip drive reference - X\:\\ OR X\:/ -->
<mapper id="strip_drive" type="regexp" from=".?\\:[/\\]\\?(.*)$$" to="\1"/>
<pathconvert targetos="unix" property="modroot_location">
<path>
<pathelement location="${modroot}"/>
</path>
<regexpmapper from=".?\\:[/\\]\\?(.*)$$" to="\1"/>
</pathconvert>
<mapper type="regexp" from=".?\\:[/\\]\\?(.*)$$" to="\1"/>
<map type="regexp" from=".?\\:[/\\]\\?(.*)$$" to="\1"/>
<map refid="strip_drive"/>