我有一个日志文件,其属性如:
telcol;getInformation();;000000;Production;User-Agent=MyApp/0.3.4/Android/4.1.2/GT-I9300;HTTP-Statuscode=200;phoneNumber=;X-Statistic-Context=
我如何使用正则表达式检测版本的App Name,以便返回例如。
MyApp/0.3.4
答案 0 :(得分:0)
这应该有效:
(?<=;user-agent=)([^/]+/[^/]+)