feed文本解析器

时间:2009-10-09 09:26:11

标签: html json api parsing response

我从API获取文本,如下所示:

text = 'replied to @james and he was visiting this http://some-site.com/another/something/../ so what you think about it';

如何解析此文本并将链接作为html链接和@james作为html链接,但使用自己的href值。

有没有人知道任何已经这样做的功能,或者有人可以在这里粘贴自己的功能吗?

1 个答案:

答案 0 :(得分:1)

取决于您使用的语言(从您的问题中不清楚)。但您可以将链接和@text转换为带有正则表达式的可点击URL。 这个google search会指出你正确的方向。