joomla / statistics-server

Server for collecting environment stats for Joomla Installations
GNU General Public License v2.0
11 stars 17 forks source link

Regular expression to get versions #16

Closed phproberto closed 9 years ago

phproberto commented 9 years ago

This solves the issue with versions like: 3.5.0-beta2 returning 3.5.02. Sample test versions:

    '3.5',
    '3.5.10-dev2',
    '12.4.10-dev1',
    '3.12.0-dev',
    '4.50'

Return:

3.5
3.5.10
12.4.10
3.12.0
4.50
wilsonge commented 9 years ago

Thankyou!