var str=['维护费','维护费用'];var reg=/[一-龥]$/;for(var i in str){ if(reg.test(i)){ alert(i); }}
/.*费$/.test(str);