如何使用正则表达式验证非空?
reg.RegEx := '/S';
或者
String.prototype.trim = function(){
return this.replace(/^\s+|\s+$/g, "");
}
var val = document.getElementById('Input_id').value;
if(val.trim() == ""){
alert("该输入框不能为空!");
} else {
alert('你填的数据为:' + val);
}
正则表达式,又称规则表达式。(英语:Regular Expression,在代码中常简写为regex、regexp或RE),计算机科学的一个概念。正则表通常被用来检索、替换那些符合某个模式(规则)的文本。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function checkForm() {
var txt1 = document.getElementById("TextBox1").value;
if (txt1==null||txt1 == "") {
alert('用户名不能为空!');
return false;
}
if (txt1.length < 6 || txt1.length > 10) {
alert('用户名必须6-10个字符');
return false;
}
// \s ?匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。
//输入\s+ 代表匹配1-n个空格,只要用户名中有一个或多个空格都无法通过验证.
var regular = /\s+/g
if (regular.test(txt1)) {
alert('不能输入一串的空格!');
return false;
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:Button ID="Button1"
runat="server" Text="Button"?
onclick="Button1_Click" OnClientClick="return checkForm()" />
</div>
</form>
</body>
</html>