欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js基础之String API

程序员文章站 2022-03-04 22:02:10
...

js基础之String API

属性 描述
charAt() 返回在指定位置的字符
indexOf() 返回某个指定的字符串值在字符串中首次出现的位置
includes() 查找字符串中是否包含指定的子字符串
split() 把字符串分割为字符串数组
trim() 去除字符串两边的空白
toString() 返回一个字符串
slice() 提取字符串的片断,并在新的字符串中返回被提取的部分

一、charAt

var str = "HELLO WORLD"
// charAt(index) index为索引值
var result = str.charAt(1)
console.log(result) // E

二、indexOf

var str = "Hello world, welcome to the universe."
// indexOf(searchvalue,start) start可选,规定在字符串中开始检索的位置
var result = str.indexOf("welcome")
console.log(result) // 13

三、includes

var str = "Hello world, welcome to the universe."
// includes(searchvalue, start) start可选,规定在字符串中开始检索的位置
var result = str.includes("welcome")
console.log(result) // true

四、split

var str = "Hello world welcome to the universe"
// split(separator,limit) limit可选,指定返回的数组的最大长度
var result = str.split(" ")
var result1 = str.split(" ", 3)
console.log(result) // ["Hello", "world", "welcome", "to", "the", "universe"]
console.log(result1) // ["Hello", "world", "welcome"]

五、trim

var str = "  Hello  "
var result = str.trim(" ")
console.log(result) // Hello

六、slice

var str = "Hello world"
// slice(start, end) start开始截取的下标,如果为负数,则从尾部开始截取
// end可选,要截取的结尾的下标
var result = str.slice(1, 5)
console.log(result) // ello
相关标签: js基础 js