Re: [Nant-users] string::get-length problem

2004-08-20 Thread Ian MacLean
this: test="${string::get-length('${modifications}') should be test="${string::get-length(modifications)}" by using quotes you are just getting the length of the literal string '${modifications}' note ${} syntax does not nest. '${}' excloses a complete expression and you reference properties by

[Nant-users] string::get-length problem

2004-08-20 Thread Florian Benischke
Hi there,   if I do the following :             file="albwir.basis.modifications.xml"     xpath="/vssdiff/item[1]/@name"     property="modifications"