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

Reply via email to