gpt4 book ai didi

JavaScript - 如何根据冒号获取字符串中的标签名称和 URL?

转载 作者:行者123 更新时间:2023-12-02 21:53:24 25 4
gpt4 key购买 nike

示例字符串:

var demoString="Extract the URLs and Lables from String Google:https://www.google.com Yahoo:http://yahoo.com";

我希望能够提取提供字符串的某些部分,例如(Google,https://www.google.com,Yahoo,http://yahoo.com)

如何使用 JavaScript 实现此目的?

最佳答案

您可以使用 Regex expression 来实现此目的。这些表达式指定匹配文本的规则。

在这种情况下,您可以使用以下正则表达式(您可以尝试 here ):

[A-Za-z0-9]+\:https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#= ]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//= ]*)

  • [A-Za-z0-9]+ 与网站名称匹配(不含空格)
  • \: 与冒号匹配
  • https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0 -9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*) 匹配以http 或 https(取自此答案: https://stackoverflow.com/a/3809435/1943263 )

要在 Javascript 中使用它,您需要执行以下操作:

var demoString="Extract the URLs and Lables from String Google:https://www.google.com Yahoo:http://yahoo.com";

var regexPattern = /([A-Za-z0-9]+)\:(https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*))/g;

var matches = demoString.match(regexPattern);

console.log(matches);

关于JavaScript - 如何根据冒号获取字符串中的标签名称和 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60070659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com