Re: property paths three more test cases pp13, pp14, pp15

>>
>> "xyz" is matched by "a*"
>
> To be strict, only the substring "" is matched by it.
>
> $ echo "xyz">  foo.txt
> $ egrep -o 'a*' foo.txt

"", or zero occurences of a is the (maximal length) match.

In SPARQL, regex("xyz", "a*") => true.

	Andy

Received on Tuesday, 21 December 2010 13:01:49 UTC