function fn(str) { return !/upload\/folder/.test(str) && /jpg$/.test(str) } alert(fn('/upload/folder/4/7/pic.jpg')); alert(fn('/ffff/pic.jpg'));