admin管理员组文章数量:1343924
I'm trying to validate my file name and file extension using regular expression. My file name should only contain these characters:'A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,_,.,@,-,(,), ' and my extension only should accept .txt files. My current function is pretty plicated and requires nested looping what I don't like. So I would like to check all of this in one single expression. Here is my current code:
fileName = 'My Document.txt'
fileExt = fileName.substr(fileName.length-4)
validCharList='A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,_,.,@,-,(,), ';
err = false;
letterOk = false;
for(i=0;i<fileName.length;i++){
letterOk = false;
for(b=0;b<validCharList.length;b++){
if(fileName.charAt(i) == validCharList.charAt(b)){
letterOk = true;
break;
}
}
if(letterOk == false){
alert('file name has an invalid character.');
return false;
break;
}
}
if(fileExt != '.txt' && fileExt != '.TXT'){
alert("Your document does not have a proper file extension.")
return false;
}
If anyone can help with this please let me know. Thanks!
I'm trying to validate my file name and file extension using regular expression. My file name should only contain these characters:'A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,_,.,@,-,(,), ' and my extension only should accept .txt files. My current function is pretty plicated and requires nested looping what I don't like. So I would like to check all of this in one single expression. Here is my current code:
fileName = 'My Document.txt'
fileExt = fileName.substr(fileName.length-4)
validCharList='A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,_,.,@,-,(,), ';
err = false;
letterOk = false;
for(i=0;i<fileName.length;i++){
letterOk = false;
for(b=0;b<validCharList.length;b++){
if(fileName.charAt(i) == validCharList.charAt(b)){
letterOk = true;
break;
}
}
if(letterOk == false){
alert('file name has an invalid character.');
return false;
break;
}
}
if(fileExt != '.txt' && fileExt != '.TXT'){
alert("Your document does not have a proper file extension.")
return false;
}
If anyone can help with this please let me know. Thanks!
Share asked Oct 3, 2016 at 20:37 espresso_coffeeespresso_coffee 6,12012 gold badges95 silver badges220 bronze badges2 Answers
Reset to default 8Something like this?
return /^[a-z0-9_.@()-]+\.txt$/i.test(fileName);
If you want two separate checks, are you indicate in ments, you might do something like this:
var validFilename = /^[a-z0-9_.@()-]+\.[^.]+$/i.test(fileName);
var validExtension = /\.txt$/i.test(fileName);
The first expression tests everything up until the last period, and verifies that there is at least one non-period character after the last period, prising the extension.
If you don't want to bother with the definition of what is a filename, you may instead invert the test, and explicitly check for the presence of invalid characters (here I'm testing the entire string again, so validFilename
will be false even if you have invalid characters only in the extension - one way around that would be to validate extension before filename)
var validFilename = !/[^a-z0-9_.@()-]/i.test(fileName);
Try this for single line check of filename and extension using single regex.
const validFilename = /^[\w,\s-]+\.[A-Za-z0-9]{3}$/i.test('filename');
本文标签: javascriptHow to validate file name and file extension from single RegexStack Overflow
版权声明:本文标题:javascript - How to validate file name and file extension from single Regex? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743689640a2522490.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论