Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 762 Bytes

isAlpha.md

File metadata and controls

27 lines (18 loc) · 762 Bytes
标题 标签
isAlpha(判断字符是否只包含字母) string,regexp(字符串,正则表达式)

检查字符串是否仅包含字母字符。

  • 使用 RegExp.prototype.test() 检查给定的字符串是否与字母正则表达式模式匹配。
const isAlpha = str => /^[a-zA-Z]*$/.test(str);

调用方式:

isAlpha('sampleInput'); // true
isAlpha('this Will fail'); // false
isAlpha('123'); // false

应用场景

结果如下:

<iframe src="codes/javascript/html/isAlpha.html"></iframe>