美文网首页
字符串的操作

字符串的操作

作者: BR | 来源:发表于2016-03-27 13:18 被阅读0次

    1.判断是否是String类型

    解析:String类型有两种表示方法;

       var    str = "abcdsa";     //typeof   str == 'string'返回true

        var    str  =  new   String("abcdsa");    //typeof  str =='object'返回true

    总结,基本类型直接赋值用typeof检测,使用new创建实例用instanceof检测;

    function    checkStr(str){

            if(typeof  str == '')

    }

    2.split();把字符串分割成字符串数组;

    var  str  = '123455';

    str.split('');  //  ["1","2",""]

    相关文章

      网友评论

          本文标题:字符串的操作

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