美文网首页
字符串的其他常用方法

字符串的其他常用方法

作者: waterte | 来源:发表于2018-08-27 17:58 被阅读0次

    //trim()方法 将字符串中的两端的空格去掉

            var str = " haha haha "

            console.log(str)

            console.log(str.trim())

      //toUpperCase() 将字符串中的小写字母全部转化为大写

      //toLowerCase() 将字符串中的大写字母全部转化为小写

            var str = "abc";

            console.log(str.toUpperCase());//ABC

            var str2 = "ABC";

            console.log(str2.toLowerCase());//abc

        //match()方法 字符串中查找目标字符串第一次出现的信息,没有找到返回null

            var str3 = "我是match()方法,快来了解我啊";

            console.log(str3.match("match()"));

            /*

        只能解析非中文代码

        btoa() 字符串或者二进制转化为base64编码  (加密)

        atob()  base64编码转化为原来的编码        (解密)

         加密解析中文文字

         encodeURIComponent()  (加密)

         decodeURIComponent()  (解密)

            */

            var str4 = "那谁,I Love You!"

            var str5 = encodeURIComponent(str4);

            //再加密

            var str6 = btoa(str5)

            console.log(str6)

    相关文章

      网友评论

          本文标题:字符串的其他常用方法

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