博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Regular Expression "not matching" and SPARQL Filter function usage
阅读量:5050 次
发布时间:2019-06-12

本文共 600 字,大约阅读时间需要 2 分钟。

OK, I had a problem here when converting bio2rdf.org irefindex data into nanopublication using sparql here: 

in a database, if the item you are looking for has multiple types, but you only need one of those types in your converted data, what you can do is to use a sparql filter function with regex

1. the proper sparql filter syntax is as follows: 

select ?s where{  ?s ?p ?o .  filter ( #your statements here for filter ) #it's brackets () not curly parenthesis {} }

2. the proper regex to match those items that you don't want 

^.*?(?
^.*?(?

转载于:https://www.cnblogs.com/RuiYan/p/4150978.html

你可能感兴趣的文章
PHP 微信错误状态返回码说明
查看>>
【4.1】Python中的序列分类
查看>>
ubuntu 移动文件
查看>>
Easy Mock
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
《架构之美》阅读笔记05
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
JDBC基础篇(MYSQL)——使用statement执行DQL语句(select)
查看>>
关于React中props与state的一知半解
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
关闭数据库
查看>>
webStrom智能提示忽略首字母大小写问题
查看>>
层叠加的五条叠加法则(一)
查看>>
设计模式六大原则(5):迪米特法则
查看>>
对Feature的操作插入添加删除
查看>>
javascript String
查看>>
ecshop 系统信息在哪个页面
查看>>
【转】码云source tree 提交超过100m 为什么大文件推不上去
查看>>