Skip to content

Commit 0cec18e

Browse files
Tptafs
andauthored
Apply suggestions from @afs
Co-authored-by: Andy Seaborne <[email protected]>
1 parent 1cf1f34 commit 0cec18e

4 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
22
@prefix ex: <http://example.com/#> .
33

4-
ex:foo rdf:value "ac" , "abc" , "abbc" , "abbbc" , "a\nc", "a\nb\nc" , "a.c" , "ABC" , "a?+*.{}()c" , "b" .
4+
ex:foo rdf:value "ac" , "abc" , "abbc" , "abbbc" , "a\nc", "a\nb\nc" , "a.c" , "ABC" , "a?+*.{}()[]c" , "b" .

sparql/sparql10/regex/regex-no-metacharacters-case-insensitive.rq

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ PREFIX ex: <http://example.com/#>
44
SELECT ?val
55
WHERE {
66
ex:foo rdf:value ?val .
7-
FILTER regex(?val, "a?+*.{}()C", "iq")
7+
FILTER regex(?val, "a?+*.{}()[]C", "iq")
88
}

sparql/sparql10/regex/regex-no-metacharacters.rq

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ PREFIX ex: <http://example.com/#>
44
SELECT ?val
55
WHERE {
66
ex:foo rdf:value ?val .
7-
FILTER regex(?val, "a?+*.{}()c", "q")
7+
FILTER regex(?val, "a?+*.{}()[]c", "q")
88
}

sparql/sparql10/regex/regex-no-metacharacters.srx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<results>
77
<result>
88
<binding name="val">
9-
<literal>a?+*.{}()c</literal>
9+
<literal>a?+*.{}()[]c</literal>
1010
</binding>
1111
</result>
1212
</results>

0 commit comments

Comments
 (0)