Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道该怎么做。无论如何要检测一个 url 作为内容,然后在它周围连接一个标签?
我希望用 Javascript 来完成。以 HTML 格式输出。
假设我有一个带有常规文本的字符串,以及一个 url。
像这样的东西:
一旦你确定了你的链接,就会做这项工作。为此,您必须限制链接的格式,例如要求它们包含http://(或https://等)。如果您只是在寻找格式正确的链接,您可以搜索以http://etc. 开头并在第一个非 URL 字符之前结束的字符串:
http://
https://
使用正则表达式字符类: