PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • A regex like this should allow any character except for exclamation marks (!) and question marks (?):Code: Select all$regex = '/^[^!\\?]*$/';The ^ symbol inside of the [] brackets negates the character set, so that it matches any character except the ones listed.
http://www.w3.org/ns/prov#wasQuotedFrom
  • php-forum.com