我正在尝试找出以特殊字符或行尾结尾的模式。
即(以粗体查看比赛)
1)约翰·多伊(John Doe)在这里。你好吗
2)他不在那里;
3)我在这里
我提到了In regex, match either the end of the string or a specific character,并使用了以下模式
this.serviceinstance.subscription_return().subscribe((response) => {});
但是这也与模式类型3不匹配
我也想匹配行尾,但是尝试下面的方法,但是没有一个起作用。
.+[,;\\n\\r]
在行中没有特殊字符的情况下,如何确保与行尾匹配?