I have a string:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)
I want to know what version of Firefox is in the string (3.5.2).
My current regex is:
Firefox\/[0-9]\.[0-9]\.[0-9]
and it returns Firefox/3.5.2
I only want it to return 3.5.2
from the Firefox version, not the other versions in the string. I already know the browser is Firefox.