--- Nat Gross <[EMAIL PROTECTED]> wrote: [SNIP] > This is what I want: > ---------- > <mapper id="mapped"> > <regexpmapper > from="(${projectPath}/src/**)/ejb" > to="\1" > /> > </mapper> > <property name="pleaseHelp" refid="mapped" /> > -------- > If the from path = /a/b/c/d/e/f/e/ejb, > ${pleaseHelp} should=/a/b/c/d/e > If the from path = /a/ejb, ${pleaseHelp} should=/a > > Alas, in the aforementioned snippet, in my case, > ${pleaseHelp} = > [EMAIL PROTECTED] > > Thanks again > -nat
You haven't mapped anything here. Try this: <pathconvert property="pleaseHelp" pathsep=" "> <path> <dirset dir="${projectPath}" includes="**/ejb" /> </path> <mapper type="glob" from="*ejb" to="*" /> </pathconvert> <echo>$${pleaseHelp}=${pleaseHelp}</echo> -Matt > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]