代碼: 選擇全部
<?php
$strOld='Domain Name: google.com.tw Registrant: Google Inc.';
echo '原始字串:<br />'.$strOld.'<br />';
preg_match("/(Domain Name: [^\s]*) Registrant: Google Inc./",$strOld, $matches);
echo '<br />比對後的字串:<br />'.$matches[1];
?>
代碼: 選擇全部
$s = 'Domain Name: google.com.tw Registrant: Google Inc.';
$r = strstr($s, ' Registrant:', true);
echo $r; // 顯示 "Domain Name: google.com.tw"
代碼: 選擇全部
$s = 'Domain Name: google.com.tw Registrant: Google Inc.';
$r = substr($s, 0, strpos($s, ' Registrant:'));
echo $r; // 顯示 "Domain Name: google.com.tw"