正则

作者: 冯走心 | 来源:发表于2017-03-16 16:54 被阅读6次

    去空格

     str.value.replace ( /\s+/g , '' );
    

    非空

                /^\S+$/
    

    匹配任何可见字符,

    /\S+/g.test('');   //false
      /\S+/g.test('    ');   //false
    
    /\S+/g.test('a');   //true
    /\S+/g.test('a ');   //true
    /\S+/g.test('  a');   //true
    /\S+/g.test('  a   ');   //true
    
    

    相关文章

      网友评论

          本文标题:正则

          本文链接:https://www.haomeiwen.com/subject/clujnttx.html