1

代码:

import urlparse
url1 = 'http://try.github.io//levels/1/challenges/1'
netloc1 = urlparse.urlparse(url1)[1]  #try.github.io

url2 = 'https://github.com/explore'
netloc2 = urlparse.urlparse(url2)[1]  #github.com

netloc2是我想要的,但是,我希望netloc1github.io,如果使用正则表达式,如何处理它。

4

1 回答 1

0

描述

此正则表达式将验证 url 是否包含try.github.iogethub.com

^https?:[\/]{2}(try[.]github[.]io|github[.]com)

在此处输入图像描述

例子

我不知道 python,所以我提供了一个 php 示例来展示正则表达式的工作原理。

<?php
$sourcestring="your source string";
preg_match_all('/^https?:[\/]{2}(try[.]github[.]io|github[.]com)/im',$sourcestring,$matches);
echo "<pre>".print_r($matches,true);
?>

$matches Array:
(
    [0] => Array
        (
            [0] => http://try.github.io
            [1] => https://github.com
        )

    [1] => Array
        (
            [0] => try.github.io
            [1] => github.com
        )

)

免责声明

使用您的urlparse解决方案可能会更容易,然后只需应用一些逻辑来测试[1]返回的值。

于 2013-05-30T12:38:59.283 回答