我有以下字符串,其中包含重复的文本模式,后跟括号和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', '')
替换换行符。
答案 0 :(得分:1)
使用否定字符来实现此目的。
String pat =“([^ \\ n])”