字符串的扩展方法 includes()、startWidth()、endWidth()的方法介绍使用
程序员文章站
2022-03-01 14:53:50
...
includes()是判断字符串中是否包含某一个字符,返回的是true 和 false 。
const msg = 'Hi, my name is lily'
console.log(msg.includes(name)) // true
startWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false
const msg = 'Hi, my name is lily'
console.log(msg.startWidth(Hi)) // true
endWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false
const msg = 'Hi, my name is lily'
console.log(msg.endWidth(lily)) // true
推荐阅读
-
在Python中用split()方法分割字符串的使用介绍
-
在Python中用split()方法分割字符串的使用介绍
-
使用python字符串连接的三种方法及其效率、适用场景详细介绍
-
使用Python字符串连接的5种方法介绍
-
ES6/07/Array的扩展方法,...扩展运算符,Array.from(),(arr.find(),arr.findIndex()和arr.includes())模板字符串,Set数据结构
-
使用Python字符串连接的5种方法介绍
-
在Python中用split()方法分割字符串的使用介绍
-
JavaScript的数组和字符串中includes方法的使用介绍
-
在Python中用split()方法分割字符串的使用介绍
-
JavaScript的数组和字符串中includes方法的使用介绍