Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: 正規表現、2 つの文字の間の文字列値を取得
myemail@gmail.com
「@」と「.」の間にあるものを取得するパターンは何ですか? この文字列で?この場合、「gmail」になります。
私はそれが...
preg_match("'@(.*?)\.'si", $source, $match);
$email = 'myemail@gmail.com'; $gmail = preg_match('/@([^\.]*)\./', $email, $m) ? $m[1] : false;