【发布时间】:2015-03-20 14:41:24
【问题描述】:
我需要为 mylyn 任务 repo 连接器创建一个正则表达式,以仅选择 没有 带有字符串 needs info 的标签的问题
恐怕我对正则表达式的经验为零,因此尝试了以下各项,结果同样为零:
(^needs info) <- filters for only *has* needs info label
^(needs info) <- filters for only *has* needs info label
(?!needs info) <- does nothing
^(?!needs info) <- does nothing
非常感谢任何帮助。
【问题讨论】:
-
关闭它,因为它看起来像是我试图使用它的 mylyn 连接器是愚蠢的,以正确允许完整的正则表达式:\
-
我投票决定将此问题作为离题结束,因为看起来问题是软件错误而不是代码,因此没有可能的 SO 解决方案。
标签: regex regex-negation