Which one of the following Regular Expressions could be used to parse the value 5.2.0 from the string?
Version 5.2.0
Version (\.*)
Version\s+(\d+\.\d+\.\d+)
Version (\d+)
Version (\d+).(\d+).(\d+)
Submit