-1

我有一系列短语:

One: This is some data
Two: This is some more data
One: This is some more more data
Two: This is some more more more data
One: This is some more more more more data

我正在尝试找到一个regex匹配所有"Two:"行(整行)的模式。我一直在尝试自己获得正确的模式很长一段时间没有运气,但我认为这应该很简单,对吧?

我怀疑这很重要,但我正在使用 Python。

谢谢!

4

3 回答 3

4

试试这个:

>>> re.match(r'Two:.*$')
于 2013-03-01T14:46:17.543 回答
2

要匹配以字符“Two”开头到最后的行,请使用以下命令:

>>> re.match(r'^Two:.*$')
于 2013-03-01T14:48:08.530 回答
-1

如果这是python,为什么不直接if "Two:" in line:检查是否"Two:"在该行中。这比使用正则表达式要容易得多。

于 2013-03-01T14:48:07.767 回答