正则表达式 - 匹配重复模式

时间:2015-09-17 17:55:21

标签: python regex

我有以下字符串,其中包含重复的文本模式,后跟括号和ID号。

The New York Yankees (12980261666)\n\nRedsox (1901659429)\nMets (NYC) 
(21135721896)\nKansas City Royals (they are 7-1) (222497247812331)\n\n
other team  (618006)\n

我正努力写一个会返回的正则表达式:

The New York Yankees (12980261666)

Redsox (1901659429)

Mets (NYC) (21135721896)

Kansas City Royals (they are 7-1) (222497247812331)

other team  (618006)

以后可以使用string.replace('/n', '')替换换行符。

1 个答案:

答案 0 :(得分:1)

使用否定字符来实现此目的。

String pat =“([^ \\ n])”