gpt4 book ai didi

javascript - 替换字符串并计算字符串中字母的出现次数

转载 作者:行者123 更新时间:2023-11-29 22:26:01 26 4
gpt4 key购买 nike

您好,我有一个这种类型的字符串“061801850010300-09/A/B”,我想做的是用“-”替换“/”。

用“1”替换“A”,用“2”替换“B”

我的意思是我想显示 A 的数学出现为 1,B 为 2,C 为 3...Z 为 26 等等。

最佳答案

var result = "061801850010300-09/A/B"
.replace(/\//g, '-')
.replace(/[A-Z]/ig, function(c){
return c.toUpperCase().charCodeAt(0)-64;
});

关于javascript - 替换字符串并计算字符串中字母的出现次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9289782/

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