-3

给定一个带有哈希标签的字符串,我如何得到一个所有哈希标签都用 html 锚标签包裹的新字符串?

我不知道该怎么做。

4

1 回答 1

2

使用twitter-textgem 提取哈希并链接它们

https://github.com/twitter/twitter-text-rb

auto_link_hashtags方法是您正在寻找的,他们有更多的看看

在项目中包含 gem 后来自 rails 控制台的示例

1.9.3p194 :004 > include Twitter::Autolink
 => Object 

1.9.3p194 :007 > auto_link_hashtags " #goohh" , :hashtag_url_base => "http://xyzzcac.com/hash/"
 #=> " <a class=\"tweet-url hashtag\" href=\"http://xyzzcac.com/hash/goohh\" rel=\"nofollow\" title=\"#goohh\">#goohh</a>" 
于 2012-08-26T07:10:48.537 回答