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

2020面试准备12----如何把一个字符串的大小写取反(大写变小写或小写变大写)

程序员文章站 2023-12-21 18:04:10
...
let str = "adsfsgEREvg啦啦啦啦啦dfsfr";
str = str.replace(/[a-zA-Z]/g,content=>{
	console.log(content)
	// content=>每一次正则匹配的结果
	return content.toUpperCase()===content?content.toLowerCase():content.toUpperCase()
})
console.log(str)//=>ADSFSGereVG啦啦啦啦啦DFSFR
相关标签: 前端面试

上一篇:

下一篇: