我需要用 javascript 匹配并扩展一个小 url

发布于 2024-12-02 08:27:09 字数 172 浏览 0 评论 0原文

我需要用 javascript 匹配并扩展一个小网址:

http://t.co/qJEZPFk

运气不好

    text.match(/http:\/\/t\.co.*/i)

I need to match and expand a tiny url with javascript:

http://t.co/qJEZPFk

No luck with

    text.match(/http:\/\/t\.co.*/i)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女情怀诗 2024-12-09 08:27:09

您可以使用这样的代码来捕获微小的 URL 代码:

var url = "http://t.co/qJEZPFk";
var matches = url.match(/http:\/\/t\.co\/([^\/]+)\/?$/);
if (matches && matches.length > 1) {
    var urlCode = matches[1];
}

作为解释,正则表达式模式如下:

  • http://t.co/
  • 后跟一个或多个不是一组中捕获的 / 的字符
  • 后跟斜杠或字符串结尾

You can use code like this to capture just the tiny URL code:

var url = "http://t.co/qJEZPFk";
var matches = url.match(/http:\/\/t\.co\/([^\/]+)\/?$/);
if (matches && matches.length > 1) {
    var urlCode = matches[1];
}

By way of explanation, the regex pattern is this:

  • http://t.co/
  • Followed by one or more characters that is not a / captured in a group
  • Followed by either a slash or the end of string
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文