我尝试编写Server-Client程序。我可以发送协议文本并正确获取文本。 但是当我尝试解析文本时,我遇到了Matcher Class的问题。因为它只匹配第一行。那么我怎样才能找到正确的String和解析文本。我认为Matcher不会尝试匹配其他行。如果它是bug我怎么能解决它,或者我将拆分每一行然后尝试解析。
下面是一个例子,我不能在表达式上匹配String。
String veri ="SIP/2.0 200 OK\r\n"
+"Via: SIP/2.0/UDP 10.10.10.34:5060;branch=z9hG4bK3834f681a;received=10.10.10.17\r\n"
+"From: <sip:4420145@10.10.10.24>;tag=as153459088\r\n"
+"To: <sip:44520145@10.10.10.24>;tag=as6163450a5a\r\n"
+"Call-ID: 1e0ssdfdb7f456e5977bc0df60645348cf1ce@[::1]\r\n"
+"CSeq: 18368 REGISTER\r\n"
+"Server: Asterisk PBX 11.3.0\r\n"
+"Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH\r\n"
+"Supported: replaces, timer\r\n"
+"Expires: 120\r\n"
+"Contact: <sip:345dgd@10.10.10.17:5060>;expires=120\r\n"
+"Date: Sat, 29 Jun 2013 14:00:50 GMT\r\n"
+"Content-Length: 0";
//veri="To: <sip:3453@10.10.10.24>;tag=34dgd\r\n";
Pattern p1 = Pattern.compile("^To\\: (.*);tag=(.*)$");
Matcher m = p1.matcher(veri);
if(m.find()){
System.out.println(m.group(1).trim());
}
感谢您的帮助
答案 0 :(得分:1)
您只需在正则表达式中使用(?m)
嵌入式标记或Pattern.MULTILINE
模式启用匹配的多行模式。这样,$
将停在每个行终止符处,而不是整个输入的结尾。
Pattern p1 = Pattern.compile("(?m)^To: (.*);tag=(.*)$");
此外,而不是:
if(m.find())
你应该使用:
while (m.find())
另请注意,您与匹配器引用名称不匹配。您在if
内使用 matcher ,但是您定义了 m 。
P.S:您最后会为字符串重新分配一个新值。请务必使用+=
代替=
。
答案 1 :(得分:0)
我会使用这个正则表达式
^To:\s+([^;]*);tag=(\w+)