我已经搜索了相当多的答案,但我一直在寻找有关如何将纯文本链接转换为可点击的超链接或从文本中删除超链接的文章。这两者都不是。
我希望能够在运行时解析出单词/短语。根据一些后端逻辑/数据从它们创建超链接。例如,用户个人资料可能包含“关于我”部分,如下所示:
I went to xyz university and like basketball & football.
我想要一些可以创建超链接的功能:
用户可以随时使用不同的运动,音乐等更改自己的个人资料,我希望能够解释这一点。如果单词/短语列表中不存在单词或短语,我指定链接,则没有任何反应。
是否有某个术语我应该使用谷歌搜索,一些隐藏的Ruby类可以做到这一点,还是一个我没有找到的宝石?
感谢您提供的任何帮助!
凯尔
答案 0 :(得分:1)
我认为首先谈论机器学习的主题,特别是关键词匹配。
我不确定最好的方法,但我的出发点可能是做一些严格索引的postgres关键字搜索,并包含一个给你路由的属性。您将不得不构建某种类型的键,值查找,并且您可能必须自己开始构建字典,因为我不确定您如何根据单词获取主观信息。
答案 1 :(得分:1)
8一种方法......其他人可能会提出一些改进......
使用以下字段创建名为Substitutions的模型和表:短语,超链接,phrase_length(保存前的phrase_length计算)...
# look for substitions in descending phrase length order
# so that "Columbus University" is substituted instead of "Columbus" (the city)
# replace matched phrase with a temporary eyecatcher storing substitution id
# we do this so that other matches of smaller strings will disregard
# already matched text
Substitution.order("phrase_length DESC").each do |subst|
paragraph.sub!( subst.phrase, "{subbing#{subst.id.to_s.rjust(8, '0')}}" )
end
# now replace eyecatchers with hyperlink string
pointer = paragraph.index '{subbing'
while pointer
subst = Substitution.find(paragraph[pointer+9, 8].to_i)
paragraph.sub!( "{subbing#{subst.id.to_s.rjust(8, '0')}}", subst.hyperlink )
pointer = paragraph.index '{subbing' # continue while eyecatchers still present
end