gpt4 book ai didi

Javascript选择字符串的一部分并将其转换为大写

转载 作者:行者123 更新时间:2023-11-30 10:55:04 25 4
gpt4 key购买 nike

我有这样一个字符串:

A sampletext
b sampletext3
c exampletext
A sampletext587
b sampletext5
b sampletextasdf
d sampletext4
b sometext
c sampletextrandom

在 JS 中,如何将以 b 开头的行中的所有文本转换为大写?

谢谢!

最佳答案

正则表达式

"b sampletext3".replace(/^b/gm,function(x){return x.toUpperCase()})
B sampletext3

并将其分配给字符串对象

String.prototype.toTitleCaseB=function(){
return this.replace(/^b/gm,function(x){return x.toUpperCase()})
}

以后会用like

"b sampletext3".toTitleCaseB()
B sampletext3

关于Javascript选择字符串的一部分并将其转换为大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2370678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com