大家好,又见面了,我是你们的朋友全栈君。
记住几个js的api并不能提交自己的竞争力,但可以提高开发效率。
includes() 判断字符串中是否含有其他字符串,返回布尔类型值
const name = 'hy';
const sentence = 'Hello hy! I am lq.';
const result = sentence.includes(name);
console.log(result); // true
复制代码
startsWith() 判断某个字符串是否在调用者的开头,返回布尔类型
sentence.startsWith('He'); // true
复制代码
endsWith() 判断某个字符串是否在调用者的结尾,返回布尔类型
sentence.endsWith('lq.'); // true
复制代码
replace()方法用来替换字符串中的子串
let name = 'repeat my name: liqi liqi liqi';
let result1 = name.replace('li', 'h');
console.log(name); // 'repeat my name: liqi liqi liqi'
console.log(result1); // 'repeat my name: hqi liqi liqi';
let result2 = name.replace(/li/g, 'h');
console.log(result2); // 'repeat my name: hqi hqi hqi';复制代码
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/106851.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...