gpt4 book ai didi

javascript - 替换下划线后的数字

转载 作者:行者123 更新时间:2023-11-28 12:37:19 26 4
gpt4 key购买 nike

我需要替换字符串内下划线后的所有数字。

我认为我可以使用正则表达式,但我不知道如何使用正则表达式语法

查看我的字符串示例:

milton_0
milton_1

最佳答案

如果这是标准格式,您可以使用split()

var str = 'milton_1';
alert(str.split('_')[1]);

关于javascript - 替换下划线后的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15789690/

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