/^<\d+> \d{14}( [a-z]+){2}$/gi

解决方案 »

  1.   

    /^<\d+> \d{14}( [^\s]+){2}$/gi
      

  2.   

    /^<\d+> \d{14}( \S+){2}$/gi
      

  3.   

    <!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">
    <!-- DW6 -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>shawl.qiu template</title>
    <script type="text/javascript">
    //<![CDATA[
    var str='kkk<123> 20061115114446 jean 登陆了啊 kkk';
    defaultStatus=str.match(/<123> \d{14} [a-z]+ [^\x00-\xff]+/i)
    //]]>
    </script>
    </head>
    <body>
    <123> 20061115114446 jean 登陆了啊
    类似上面一个字符串 
    <数字>空格 14位数字 空格 字符串 空格 字符串
    </body>
    </html>