gpt4 book ai didi

javascript字符串删除空格和连字符

转载 作者:可可西里 更新时间:2023-11-01 01:56:06 28 4
gpt4 key购买 nike

我想从给定的字符串中删除空格和连字符。

 var string = "john-doe alejnadro";
var new_string = string.replace(/-\s/g,"")

不起作用,但下一行对我有用:

var new_string = string.replace(/-/g,"").replace(/ /g, "")

如何一次性完成?

最佳答案

使用alternation :

var new_string = string.replace(/-|\s/g,"");

a|b 将匹配 either ab,因此它匹配连字符和空格。

示例:

> "hyphen-containing string".replace(/-|\s/g,"")
'hyphencontainingstring'

关于javascript字符串删除空格和连字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24859717/

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