美文网首页
关于js字符串

关于js字符串

作者: 周周很可爱 | 来源:发表于2019-11-14 15:36 被阅读0次
    1. charAt(): 返回指定下标位置的字符。
    var str = 'hello world'   
    var str1 = str.charAt(6)  //如果index不在0-str.length(不包含str.length)之间,返回空字符串。
    console.log(str1) // w
    
    
    1. charCodeAt(): 返回指定下标位置的字符的unicode编码
    var str = 'hello world'
    var str1 = str.charCodeAt(1) // 这个返回值是 0 - 65535 之间的整数。
    var str2 = str.charCodeAt(-1) //如果index不在0-str.length(不包含str.length)之间,返回NaN。
    console.log(str1)  // 101
    console.log(str2)  // NaN
    
    
    1. indexOf(): 返回某个指定的子字符串在字符串中第一次出现的位置
    var str = 'hello world'
    var str1 = str.indexOf('o') // 从下标0开始找
    var str2 = str.indexOf('a') // 找不到返回 -1
    var str3 = str.indexOf('o',str1+1) 
    console.log(str1) // 4
    console.log(str2) // -1
    console.log(str3) // 7
    
    
    1. lastIndexOf(): 返回某个指定的子字符串在字符串中最后出现的位置。
    var str = 'hello world'
    var str1 = str.lastIndexOf('w') 
    var str2 = str.lastIndexOf('a') 
    var str3 = str.lastIndexOf('o',6) 
    console.log(str1)  //6
    console.log(str2)  //-1
    console.log(str3)  //4
    
    
    1. slice(): 返回字符串中提取的子字符串。
    var str = 'hello world'
    var str1 = str.slice(2) //如果只有一个参数,则提取开始下标到结尾处的所有字符串
    var str2 = str.slice(2,7) //两个参数,提取下标为2,到下标为7但不包含下标为7的字符串
    var str3 = str.slice(-7,-2)//如果是负数,-1为字符串的最后一个字符。提取从下标-7开始到下标-2但不包含下标-2的字符串。前一个数要小于后一个数,否则返回空字符串
    console.log(str1) // llo world
    console.log(str2) // llo w
    console.log(str3) // o wor
    
    
    1. substring(): 提取字符串中介于两个指定下标之间的字符。
      substring()用法与slice()一样,但不接受负值的参数。
    var str = 'hello world'
    var str1 = str.substring(2)
    var str2 = str.substring(2,2) //如果两个参数相等,返回长度为0的空串
    var str3 = str.substring(7,-2)
    console.log(str1) // llo world
    console.log(str2) // 
    console.log(str3) // hello w
    
    
    1. substr(): 返回从指定下标开始指定长度的的子字符串
    var str = 'hello world'
    var str1 = str.substr(1) // 如果没有指定length,返回从下标开始处结尾处 的所有字符串。
    var str2 = str.substr(1,3)
    var str3 = str.substr(-2,2)
    console.log(str1) // ello world
    console.log(str2) // ell
    console.log(str3) // ld
    
    
    1. split(): 把字符串分割成字符串数组。
    var str = 'aa bb cc dd'
    var string1='1,2,3,4,5'
    
    var str1 = str.split('') //如果把空字符串 ("")用作分割符,那么字符串的每 个字符之间都会被分割
    var str2 = str.split(' ') //以空格为分隔符
    var str3 = str.split('',4) //4指定返回数组的最大长度
    var str4 = string1.split(',')
    console.log(str1) // ["a", "a", " ", "b", "b", " ", "c", "c", " ", "d", "d"]
    console.log(str2) // ["aa", "bb", "cc", "dd"]
    console.log(str3) //  ["a", "a", " ", "b"]
    console.log(str4) //  ["1", "2", "3", "4", "5"]
    
    
    1. replace(): 在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串。
    var str = "hello WORLD";
    var arr = /o/ig //  //o为要替换的关键字,不能加引号,否则替换不生效,i忽略大小写,g表示全局查找。
    var str1 = str.replace(arr, '--')
    console.log(str1) //hell-- W--RLD
    
    
    1. toLowerCase(): 把字符串转为小写,返回新的字符串。
    var str="Hello World";
    var str1=str.toLowerCase();
    console.log(str); //Hello World
    console.log(str1); //hello world
    
    
    1. toUpperCase(): 把字符串转为大写,返回新的字符串。
    var str="hello world";
    var str1=str.toUpperCase();
    console.log(str); //hello world
    console.log(str1); //HELLO WORLD
    
    

    相关文章

      网友评论

          本文标题:关于js字符串

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