Does the jcr:contains works against multi-value properties too? I have a multi-value property that contains long values, and I wonder if I can something like:
//*[jcr:contains(@my:property, '1')] tia, ./alex -- .w( the_mindstorm )p. On 3/15/06, Marcel Reutegger <[EMAIL PROTECTED]> wrote: > > Aarnout van der Meulen wrote: > > I would like to search for nodes with a given property-value, but not > > case-sensitive. > > So, something like //[EMAIL PROTECTED]"test"] , but then also resulting > > nodes > > with property-values "Test', "TEST" and so on. > > > > Can I create such a query? > > Or is there another way to get the desired results? > > try the following: > > //*[jcr:contains(@field1, 'test')] > > or > > //*[jcr:contains(., 'test')] > > if you want to do a fulltext search on any property of a node. > > regards > marcel > >