gpt4 book ai didi

javascript - 带有 url 的简单 javascript 正则表达式

转载 作者:行者123 更新时间:2023-11-30 12:07:36 27 4
gpt4 key购买 nike

我正在为 regExp 苦苦挣扎。

我只想解析传入的 url 到我的应用程序。

这是我当前的正则表达式:

var regexp = new RegExp('/users','i');
"/users".test(regexp); //Should return true
"/users/".test(regexp); //should return true
"/users?variable1=xxx&variable2=yyy&variableN=zzzz".test(regexp); //Should return true
"/users/?variable1=xxx&variable2=yyy&variableN=zzzz".test(regexp); //should return true;
"/users?variable1=xxx&variable2=yyy&variableN=zzzz/10".test(regexp); //Should return false
"/users/?variable1=xxx&variable2=yyy&variableN=zzzz/10".test(regexp); //should return false;
"/users/10".test(regexp); //should return false
"/users/10/contracts".test(regexp); //Should return false
"/users/10/contracts/10".test(regexp); //Should return false
"/users/anythingElseThatIsNotAQuestionMark".test(regexp); //Should return false

有好心人帮助我吗?

祝你有个愉快的夜晚。

最佳答案

它是 regexp.test("/users") 的另一种方式

The test() method executes a search for a match between a regular expression and a specified string. Returns true or false.

语法

regexObj.test(str)

MDN

关于javascript - 带有 url 的简单 javascript 正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34729609/

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