本文介绍了正则表达式匹配图像 URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用一个简单的正则表达式来验证 URL 是否包含结尾数字

I am trying to get a simple regex to verify that a URL contains the ending figures

var testRegex = /^https?:\/\/(?:[a-z\-]+\.)+[a-z]{2,6}(?:\/[^\/#?]+)+\.(?:jpe?g|gif|png)$/;
var imageUrl = "http://stackoverflow.com/questions/406192/how-to-get-the-current-url-in-jquery";
if (testRegex.test(imageUrl)) {
  alert('Not Match');
}

而这应该触发 alert('Not Match'); 而它没有?请参阅 http://jsfiddle.net/UgfKn/

And this should trigger alert('Not Match'); and it doesn't ? See http://jsfiddle.net/UgfKn/

这是怎么回事?

推荐答案

你的意思是:

if (!testRegex.test(imageUrl)) {
  alert('Not Match');
}

这篇关于正则表达式匹配图像 URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 20:28