gpt4 book ai didi

Javascript : How to write a regex to check if a symbol is surrounded by space for all occurences

转载 作者:行者123 更新时间:2023-11-30 08:17:45 25 4
gpt4 key购买 nike

句子中的冒号“:”在所有出现处都应被空格包围。

我有一个字符串“Yes I Do : things that have:fun”

我的正则表达式应该返回 false,我已经尝试了下面的检查是检查第一次出现,如果找到它返回 true。

/(\s:\s)/.test("sd : sds:sds")

最佳答案

如果您想要一个纯正则表达式解决方案,那么使用这个基于交替的正则表达式找出无效输入:

/(?:^|\S):|:(?:$|\S)/

RegEx Demo

正则表达式详细信息:

  • (?:^|\S):匹配开始或非空白
  • ::匹配冒号
  • |:或者
  • ::匹配冒号
  • (?:$|\S):匹配结尾或非空白

const regex = /(?:^|\S):|:(?:$|\S)/;
const arr = [`Yes I Do : things that have :fun`,
`Yes I Do : things that have: fun`,
`: fun`,
`fun :`,
`Yes I Do : things that have : fun`,
` : fun`,
`fun : `];

for (var i=0; i<arr.length; i++) {
console.log(regex.test(arr[i]), '::', arr[i]);
}

关于Javascript : How to write a regex to check if a symbol is surrounded by space for all occurences,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59208518/

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