我需要一個引擎收錄鏈接的ID部分的ID,正則表達式來獲得pastebin.com
這就好比http://pastebin.com/(編號)的設置,我有不同的正則表達式的累很多,我也使用的preg_match在PHP
我需要一個引擎收錄鏈接的ID部分的ID,正則表達式來獲得pastebin.com
這就好比http://pastebin.com/(編號)的設置,我有不同的正則表達式的累很多,我也使用的preg_match在PHP
preg_match("~http://pastebin.com/([0-9a-zA-Z]+)~", $url, $match);
print_r($match);
或
$url = "http://pastebin.com/a65d46";
$parsed = parse_url($url);
echo trim($parsed['path'])." is ID you needed";
代替正則表達式中,嘗試使用parse_url提取路徑
對於這個正則表達式會是矯枉過正。
$url = "http://pastebin.com/Ugj1eqCN"
$pos = strpos($url,"pastebin.com/");
echo substr($url,$pos+13);