Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个正则表达式来允许一个文本框只允许一个字符。实际上,我想验证一个文本字段以输入一个初始字符(用于名称)
在正则表达式中,'.' (dot) 匹配单个字符。如果您想确保这个单个字符是字母,请使用:
[a-zA-Z]
或在 posix 系统中:[:alpha:]
[:alpha:]
现在,要确切知道如何实现它,我们需要知道您的代码是用哪种语言编写的。
对于初学者,请查看 http://en.wikipedia.org/wiki/Regular_expression
您可以将文本框属性 MaxLength 设置为 1 并使用正则表达式来验证是否为字母。