标签: regex
我希望匹配整个词组但忽略字符-和:。
-
:
例如:
Walmart Superstore - match Walmart: Superstore - match Walmart - Superstore - match Walmart - no match dkfjsjdf - no match Superstore - no match
我如何在正则表达式中执行此操作?
答案 0 :(得分:1)
根据您的示例,您可以像Walmart[\s:-]+Superstore一样执行此操作。
Walmart[\s:-]+Superstore
https://regex101.com/r/epqiXO/1