RegularExpressionValidator

RegularExpressionValidator

本文介绍了如何编写RegularExpressionValidator的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何编写RegularExpressionValidator ValidationExpression,检查文本框中的第一个字符是否必须为大写?

how do i write RegularExpressionValidator ValidationExpression that checks that the first character must be Uppercase in a textbox ?

推荐答案


if (Regex.Match(input, @"^\P{Lu]").Success) { /*error...*/ }



干杯

Andi


Cheers
Andi


这篇关于如何编写RegularExpressionValidator的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:43