「思考题」模拟实现字符串的trim()函数
Posted liea
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了「思考题」模拟实现字符串的trim()函数相关的知识,希望对你有一定的参考价值。
function trim() {
let reg = /(^s*)|(s*$)/g
let res = this.replace(reg, ‘‘)
return res
}
String.prototype.trim = trim
// 测试
let str = ‘ hello word ‘
console.log(str.trim())
// "hello word"
以上是关于「思考题」模拟实现字符串的trim()函数的主要内容,如果未能解决你的问题,请参考以下文章
python练习题:利用切片操作,实现一个trim()函数,去除字符串首尾的空格,注意不要调用str的strip()方法