On Tue, Mar 31, 2009 at 16:01, Kurz Wolfgang <[email protected]> wrote: > I want the result to return everything that has test in it like test1, test2, > test3 > > I thought contains would do that but apparently it doesn’t:-)
if you want contains() to match prefixes you need to tell it to do so by using a wildcard: contains(., "test*") regards marcel
