我有这个字符串:
City – This is some text. This is some more – and continues here.
我想在第一个’ – ‘分割字符串以找到’city'(只是一个示例字,也可以是其他单词)。加上“ – ”后面的其余文本。
我构造了这个表达式:
(^[\D\W\S]*)( - )([\D\W\S]*)
但是最后发现的是’ – ‘而不是第一个。
第一次如何停止?
最简单的解决方案是明确禁止破折号成为第一组的一部分:
原文链接:https://www.f2er.com/regex/357452.html^([^-]*) - (.*)
说明:
^ # Start of string ([^-]*) # Match any number of characters except dashes \ - \ # Match a dash (surrounded by spaces) (.*) # Match anything that follows
但是,如果您的字符串可能包含第一组中的破折号(只是不被空格包围),则会失败。如果是这样,那么你可以使用懒惰量词:
^(.*?) - (.*)
说明:
^ # Start of string (.*?) # Match any number of characters,as few as possible \ - \ # Match a dash (surrounded by spaces) (.*) # Match anything that follows