gpt4 book ai didi

Javascript 正则表达式将字符串中出现的任何 a、b 或 c 大写

转载 作者:行者123 更新时间:2023-11-28 11:56:47 25 4
gpt4 key购买 nike

我想做一个可以映射的字符串替换

catch the ball 

CAtCh the BAll

显式指定 a->A、b->B 和 c->C 的正确语法是什么?

最佳答案

只需使用 .replace() 并使用函数将找到的匹配项大写。

var str = 'catch the ball';
str.replace(/[abc]/g, function(match){
return match.toUpperCase();
});

关于Javascript 正则表达式将字符串中出现的任何 a、b 或 c 大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21392080/

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