驗證字串只能包含數字或者英文字元的程式碼例項

antzone發表於2017-03-11

本章節分享一段程式碼例項,它實現了驗證字串內容是否只包含英文字元或者數字。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
function done(input, LengthBegin, LengthEnd) { 
  var pattern = '^[0-9a-zA-z]{' + LengthBegin+ ',' + LengthEnd+ '}$'; 
  var regex = new RegExp(pattern); 
  if (input.match(regex)) { 
    return true; 
  } else { 
    return false; 
  } 
}
var one = "antzone";
var two = "softwhy.com888";
var three = "螞蟻部落softwhy";
console.log(done(one, 2,20));
console.log(done(two, 2, 10));
console.log(done(three,2, 30));

相關文章