Reputation: 417
Trying to create a regex query that will only return the bolded string:
' Mozilla/5.0 (Linux; U; Android 4.2.2; en-us; A2003 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 ',
I tried a few ways - got to this option:
(?<=;)(.* Build)
But it returns the following string:
U; Android 4.2.2; en-us; A2003 Build
Suggestions?
Upvotes: 1
Views: 48