> 
> Still, a part of the bug here could still be addressed. What is needed is to 
> scan for a dash from the end of the version string, and separate it there 
> into 'debian revision' and 'upstream'.
> 
> E.g. this version number:
> 1.4.6-20060409-1
> should be split in upstream '1.4.6-20060409' and debian '1'.
> 
> 
> Thijs

This is actually the convertion function with regular expression: 

function vers_conv($debvers) {
        preg_match("/(.+:)?([^-]+)(ds|dsfg|debian)/",$debvers,$matches);
        if (!$matches[3]) {
                unset($matches);
                preg_match("/(.+:)?([^-]+)/",$debvers,$matches);
        }
        if (substr($matches[2],-1)=='.') $matches[2]=substr($matches[2],0,-1);
        return $matches[2];
}

How do u suggest to modify regular expression?

Stefano



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to