- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
在解析 Freebase RDF 数据转储时,我尝试仅根据实体的标题和文本解析某些实体。我正在使用正则表达式来匹配标题和文本,即使它们不匹配,返回 false,内容仍在传递。
我如何决定将什么转换成 XML 是属性 ["/type/object/name"] 不为空或者它是否包含 @en 并且属性 ["/common/document/text"] 是不为空。
什么定义空?我注意到,通过打印所有名称( properties["/type/object/name"] )和文本( properties["/common/document/text"] ),我注意到其中一些只是“[ ]”。我不想要那些。我想要的是那些不是那个并且在名称中包含 @en ( properties["/type/object/name"] ) 的。文本 ( properties["/common/document/text"] ) 不会有 @en,所以如果它不是 "[]"并且它对应的名称有 @en,那么该实体应该被转换为 XML。
当我运行我的代码时,我使用正则表达式来查看它是否匹配和不匹配那些东西,我看到那些东西被忽略了,那些“空实体”仍在转换为 XML。
这是我从终端抓取的一些输出:
<card>
<title>"[]"</title>
<image>"https://usercontent.googleapis.com/freebase/v1/image"</image>
%!(EXTRA string=/american_football/football_player/footballdb_id)<text>"[]"</text>
<facts>
<fact property="/type/object/type">/type/property</fact>
<fact property="/type/property/schema">/american_football/football_player</fact>
<fact property="/type/property/unique">true</fact>
<fact property="http://www/w3/org/2000/01/rdf-schema#label">"footballdb ID"@en</fact>
<fact property="/type/property/expected_type">/type/enumeration</fact>
<fact property="http://www/w3/org/1999/02/22-rdf-syntax-ns#type">http://www/w3/org/2002/07/owl#FunctionalProperty</fact>
<fact property="http://www/w3/org/2000/01/rdf-schema#domain">/american_football/football_player</fact>
<fact property="http://www/w3/org/2000/01/rdf-schema#range">/type/enumeration</fact>
</facts>
</card>
下面是我的代码,我做错了什么?它不应该匹配正则表达式然后不写它写的东西吗?
func validTitle(content []string) bool{
for _, v := range content{
emptyTitle, _ := regexp.MatchString("\"[]\"", v)
validTitle, _ := regexp.MatchString("^[A-Za-z0-9][A-Za-z0-9_-]*$", v)
englishTitle, _ := regexp.MatchString("@en", v)
if (!validTitle || !englishTitle) && !emptyTitle{
return false
}
}
return true
}
func validText(content []string) bool{
for _, v := range content{
emptyTitle, _ := regexp.MatchString("\"[]\"", v)
validText, _ := regexp.MatchString("^[A-Za-z0-9][A-Za-z0-9_-]*$", v)
if !validText && !emptyTitle{
return false
}
}
return true
}
func processTopic(id string, properties map[string][]string, file io.Writer){
if validTitle(properties["/type/object/name"]) && validText(properties["/common/document/text"]){
fmt.Fprintf(file, "<card>\n")
fmt.Fprintf(file, "<title>\"%s\"</title>\n", properties["/type/object/name"])
fmt.Fprintf(file, "<image>\"%s\"</image>\n", "https://usercontent.googleapis.com/freebase/v1/image", id)
fmt.Fprintf(file, "<text>\"%s\"</text>\n", properties["/common/document/text"])
fmt.Fprintf(file, "<facts>\n")
for k, v := range properties{
for _, value := range v{
fmt.Fprintf(file, "<fact property=\"%s\">%s</fact>\n", k, value)
}
}
fmt.Fprintf(file, "</facts>\n")
fmt.Fprintf(file, "</card>\n")
}
}
最佳答案
您的正则表达式无效,如果您检查错误,它会告诉您确切原因:
error parsing regexp: missing closing ]: `[]"`
regexp.MatchString("\"[]\"", v)
// should be
regexp.MatchString(`"\[\]"`, v)
另外既然你多次使用它,你应该在函数外编译它并使用它,例如:
var (
emptyRe = regexp.MustCompile(`"\[\]"`)
titleRe = regexp.MustCompile("^[A-Za-z0-9][A-Za-z0-9_-]*$")
englishRe = regexp.MustCompile("@en")
)
func validTitle(content []string) bool {
for _, v := range content {
if emptyRe.MatchString(v) || !(englishRe.MatchString(v) || titleRe.MatchString(v)) {
return false
}
}
return true
}
此行需要 1 个值作为输入,但您给了它两个值:
fmt.Fprintf(file, "<image>\"%s\"</image>\n",
"https://usercontent.googleapis.com/freebase/v1/image", // this matches the %s
id, // this doesn't
)
应该是
fmt.Fprintf(file, "<image>\"%s/%s\"</image>\n", "https://usercontent.googleapis.com/freebase/v1/image", id)
关于xml - 使用 Go 解析 RDF 三倍。一些项目错误地传递了正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26390686/
我一直在使用 AJAX 从我正在创建的网络服务中解析 JSON 数组时遇到问题。我的前端是一个简单的 ajax 和 jquery 组合,用于显示从我正在创建的网络服务返回的结果。 尽管知道我的数据库查
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我在尝试运行 Android 应用程序时遇到问题并收到以下错误 java.lang.NoClassDefFoundError: com.parse.Parse 当我尝试运行该应用时。 最佳答案 在这
有什么办法可以防止etree在解析HTML内容时解析HTML实体吗? html = etree.HTML('&') html.find('.//body').text 这给了我 '&' 但我想
我有一个有点疯狂的例子,但对于那些 JavaScript 函数作用域专家来说,它看起来是一个很好的练习: (function (global) { // our module number one
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我需要编写一个脚本来获取链接并解析链接页面的 HTML 以提取标题和其他一些数据,例如可能是简短的描述,就像您链接到 Facebook 上的内容一样。 当用户向站点添加链接时将调用它,因此在客户端启动
在 VS Code 中本地开发时,包解析为 C:/Users//AppData/Local/Microsoft/TypeScript/3.5/node_modules/@types//index而不是
我在将 json 从 php 解析为 javascript 时遇到问题 这是我的示例代码: //function MethodAjax = function (wsFile, param) {
我在将 json 从 php 解析为 javascript 时遇到问题 这是我的示例代码: //function MethodAjax = function (wsFile, param) {
我被赋予了将一种语言“翻译”成另一种语言的工作。对于使用正则表达式的简单逐行方法来说,源代码过于灵活(复杂)。我在哪里可以了解更多关于词法分析和解析器的信息? 最佳答案 如果你想对这个主题产生“情绪化
您好,我在解析此文本时遇到问题 { { { {[system1];1;1;0.612509325}; {[system2];1;
我正在为 adobe after effects 在 extendscript 中编写一些代码,最终变成了 javascript。 我有一个数组,我想只搜索单词“assemble”并返回整个 jc3_
我有这段代码: $(document).ready(function() { // }); 问题:FB_RequireFeatures block 外部的代码先于其内部的代码执行。因此 who
背景: netcore项目中有些服务是在通过中间件来通信的,比如orleans组件。它里面服务和客户端会指定网关和端口,我们只需要开放客户端给外界,服务端关闭端口。相当于去掉host,这样省掉了些
1.首先贴上我试验成功的代码 复制代码 代码如下: protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
什么是 XML? XML 指可扩展标记语言(eXtensible Markup Language),标准通用标记语言的子集,是一种用于标记电子文件使其具有结构性的标记语言。 你可以通过本站学习 X
【PHP代码】 复制代码 代码如下: $stmt = mssql_init('P__Global_Test', $conn) or die("initialize sto
在SQL查询分析器执行以下代码就可以了。 复制代码代码如下: declare @t varchar(255),@c varchar(255) declare table_cursor curs
前言 最近练习了一些前端算法题,现在做个总结,以下题目都是个人写法,并不是标准答案,如有错误欢迎指出,有对某道题有新的想法的友友也可以在评论区发表想法,互相学习🤭 题目 题目一: 二维数组中的
我是一名优秀的程序员,十分优秀!