我正在努力與regExp。簡單的JavaScript與URL的正則表達式
我只是想解析傳入的網址到我的應用程序。
這是我目前的正則表達式:
var regexp = new RegExp('/users','i');
"/users".test(regexp); //Should return true
"https://stackoverflow.com/users/".test(regexp); //should return true
"/users?variable1=xxx&variable2=yyy&variableN=zzzz".test(regexp); //Should return true
"https://stackoverflow.com/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
"https://stackoverflow.com/users/?variable1=xxx&variable2=yyy&variableN=zzzz/10".test(regexp); //should return false;
"https://stackoverflow.com/users/10".test(regexp); //should return false
"https://stackoverflow.com/users/10/contracts".test(regexp); //Should return false
"https://stackoverflow.com/users/10/contracts/10".test(regexp); //Should return false
"https://stackoverflow.com/users/anythingElseThatIsNotAQuestionMark".test(regexp); //Should return false
是任何人有善心幫助我嗎?
祝你有個愉快的夜晚。
謝謝你的幫助。對此,我真的非常感激。 –