javascript当中反义字符用法

反义字符
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
\W    匹配任意非字母,数字,下划线,汉字的字符
\S    匹配任意不是空白符的字符
\D    匹配任意非数字的字符
\B    匹配不是单词开头或结束的位置
^     取反(^写在[]里面的话,就代表排除的意思,一般来讲,^ 匹配字符串的开始)
用法示例:
1、[^abc]匹配除了abc这几个字母以外的任意字符
   2、\S+匹配不包含空白符的字符串。




字符转义

如果查找预定义字符集本身的话我们没法指定它们,因为它们会被解释成特殊的意思。这时你就必须使用\来取消这些字符的特殊意义。
.        用\.
*        用\*
\本身    用\\


例如:kkk\ .com匹配kkk.com
    D:\\Win匹配D:\Win



重复



*        重复零次或更多次(任意次)
+        重复一次或更多次
?        重复零次或一次
{n}        重复n次
{n,}    重复n次或更多次
{n,m}    重复n到m次




例如:
中国的手机号:^18\d{9}|15\d{9} $

QQ号(以非0开头,共5位到9位数字):^[1-9]\d{4,8}$

电子邮箱:^[0-9a-zA-Z](\w)+@(\w)+(\.)(cn|com|net|gov|edu|com(\.)cn)$


例 3.1.1

<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<script>
    /* 马克-to-win:String.match() (Method)
    Searches a string using a regular expression and returns the matches in an array.
    Property/method value type: Array object
    JavaScript syntax: - myObject.match(aPattern)
    */
    var r, reg;
    // 声明变量。g:global,如果没有g,只搞一个。 要是g的话, 搞所有的。
    var ss = "all over the world the heavy rain in Spain  falls mainly in the plain";
    reg = /ain/ig;
    // 创建正则表达式模式。
    r = ss.match(reg);
    // 尝试去匹配搜索字符串。
    document.write(r[0] + " " + r[1] + " " + r.length + "<br>");

    var s1 = "all over the world the heavy rain in Spain falls mainly in the plain";
    re1 = /qixy/ig;
    // 创建正则表达式模式。
    r1 = s1.match(re1);
    // 尝试去匹配搜索字符串。
    document.write("r1 is" + r1);
    if (!r1) alert("r1 is null");

    var ss = " The dfsdf the fsdgl with the gdf.gdfhg the fielder caught the ball with the glove.";
    var req = /the/g;
    var r = ss.replace(req, "A");
    document.write("r is" + r)


</script>



输出结果:
ain ain 4
r1 isnullr is The dfsdf A fsdgl with A gdf.gdfhg A fielder caught A ball with A glove.




例 3.1.2

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<SCRIPT LANGUAGE="JavaScript">
    <!--
    function check()
    {

        var email = document.regFo.email.value;
        /* 马克-to-win \w 匹配包括下划线的任何单词字符。等价于'[A-Za-z0-9_]'。* 匹配前面的子表达式零次或多次。  + 匹配前面的子表达式一次或多次。\. means 原形. a typical value is z_a@hx.com.cn
  */
        var regemail = /^[0-9a-zA-Z](\w)*@(\w)+(\.)(com|cn|net|gov|edu|com(\.)cn)$/;
    
        if (!email.match(regemail))
        {
            alert("email格式不对!")
    //    document.regForm.email.value="";
            return false;
        }

        return true;
    }
    //-->
</SCRIPT>
</HEAD>

<BODY>
<FORM name="regFo" METHOD=POST ACTION="abc.jsp" onsubmit="return check()">
    <TABLE>
         <TR>
            <TD>email</TD>
            <TD><INPUT TYPE="text" NAME="email" style="width:150px"></TD>
        </TR>
        <TR>
            <TD><INPUT TYPE="submit" value="提交"></TD>
            <TD><INPUT TYPE="reset"></TD>
        </TR>

    </TABLE>


</FORM>
</BODY>
</HTML>




例 3.1.3



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<SCRIPT LANGUAGE="JavaScript">
<!--
   myString = "java, JAVA, Java";
  //         f= f.replace(/ba|mdd|a|木/g,"*");
/* 马克-to-win:JavaScript syntax: - myObject.replace(aPattern, aString)
Argument list: aPattern A regular expression pattern
aString A replacement string
g:global,如果没有g,只替换一个字。 要是g的话, 所有字都替换。有关正则, 参考书。
*/
   myString=myString.replace(/java/ig, "Javaa");
   document.write(myString);
//-->
</SCRIPT>
</HEAD>
<BODY >

</BODY>
</HTML>


输出结果:
Javaa, Javaa, Javaa




例 3.1.4

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
<!--
String.prototype.trimq = function()
 {
/* 马克-to-win:\s 匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。 * 匹配前面的子表达式零次或多次。^ 匹配输入字符串的开始位置
  $ 匹配输入字符串的结束位置。note that here we must use ^, if we don't use it, any white place will be removed.   */
    return this.replace(/(^\s*)|(\s*$)/g, "");
 }
    var s="    java cds    ";
/*下面这句效果和后面一样*/
//    var s2 = s.trimq( );
/* \s 匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。 * 匹配前面的子表达式零次或多次。^ 匹配输入字符串的开始位置
  $ 匹配输入字符串的结束位置。note that here we must use ^, if we don't use it, any white place will be removed.   */
    var s2 = s.replace(/(^\s*)|(\s*$)/g, "");
    document.write("s2 is"+s2+"s2.length is "+s2.length) ;
//-->
</SCRIPT>
</BODY>
</HTML>

输出结果:
s2 isjava cdss2.length is 8