Mike:  try

<mapper type="regexp"
        from="^[A-Z,a-z]:(.*)" to="\1" />
HTH,
Matt

--- "Murray, Mike" <[EMAIL PROTECTED]> wrote:

> 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"/>
> 
> 



                
_______________________________
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com

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

Reply via email to