0

我尝试编写一个服务器客户端程序。我可以发送协议文本并正确获取文本。但是当我尝试解析文本时,我遇到了 Matcher 类的问题。因为它只匹配第一行。那么我怎样才能找到正确的字符串并解析文本。我认为 Matcher 不会尝试匹配其他行。如果是错误,我该如何修复它,或者我将拆分每一行然后尝试解析。

下面是一个示例,我无法在表达式上匹配字符串。

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());
  }

谢谢你的帮助

4

2 回答 2

1

您只需要使用正则表达式中的嵌入标志或模式启用行匹配模式。这样,将在每个行终止符处停止,而不是在整个输入的末尾。(?m)Pattern.MULTILINE$

Pattern p1 = Pattern.compile("(?m)^To: (.*);tag=(.*)$");

此外,而不是:

if(m.find())

你应该使用:

while (m.find())

另请注意,您与Matcher参考名称不匹配。您在您的内部使用matcherif,但您定义了m

PS:您在最后为您的字符串重新分配了一个新值。确保您使用+=而不是=.

于 2013-06-30T13:44:32.537 回答
0

我会使用这个正则表达式

^To:\s+([^;]*);tag=(\w+)
于 2013-06-30T14:02:48.413 回答