gpt4 book ai didi

node.js - 应用正则表达式时避免创建空格

转载 作者:搜寻专家 更新时间:2023-10-31 23:22:50 24 4
gpt4 key购买 nike

我有以下正则表达式:

result = result.replace(/\@.playhouse== 'true' && /g,''); 

运行于

.playground[?(@.playhouse == 'true' && @.IsPoolAvailable=='true')].checked]

在我的输出中,我确实得到了预期的响应,但它在 @ 之前创建了一个空格,如下所示

.playground[?( @.IsPoolAvailable=='true')].checked]

有没有办法通过只运行一个正则表达式 exp 来创建那个空间? 见下文:

.playground[?(@.IsPoolAvailable=='true')].checked]

最佳答案

您需要转义特殊字符,然后替换:

@\.playhouse\s*==\s*'true'\s+&&\s+

你得到了预期的输出:

enter image description here

Demo

关于node.js - 应用正则表达式时避免创建空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57213179/

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