gpt4 book ai didi

regex - "Not Whitespace and Not a hyphen"的正则表达式是什么

转载 作者:行者123 更新时间:2023-12-03 06:11:30 26 4
gpt4 key购买 nike

我尝试了这个,但它不起作用:

[^\s-]

有什么想法吗?

最佳答案

[^\s-]

应该可以,所以会的

[^-\s]
  • []:char 类
  • ^ :在 char 类中 ^ 是否定词出现在开头时。
  • \s :空格的缩写
  • - :文字连字符。连字符是元字符位于 char 类中,但不是当它出现在开头或在最后。

关于regex - "Not Whitespace and Not a hyphen"的正则表达式是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2788112/

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