Programming/PHP
[정규표현식]이메일 @ 앞으로 다 잘라서 버리기
옥수수빵
2021. 2. 17. 18:38
728x90
<?php
echo preg_replace('/^.+@/', '', 'test@test.com');
// test.com
반응형