Obfuscated e-posta adreslerini içeren aşağıdaki komut ve regex desen eşleştirme kullanarak *****
ile onlara göre değiştirmeye çalışır bir işlevi düşünün. "at", "a t", "a.t", "@"
, bazı metin (herhangi bir etki alanı adı) ardından, "dot" "." "d.o.t"
, ardından bir TLD izledi: Benim komut kelimeleri yakalamak için çalışır.
Input:
$str[] = 'dsfatasdfasdf asd dsfasdf dsfdsf@hotmail.com';
$str[] = 'I live at school where My address is dsfdsf@hotmail.com';
$str[] = 'I live at school. My address is dsfdsf@hotmail.com';
$str[] = 'at school my address is dsfdsf@hotmail.com';
$str[] = 'dsf a t asdfasdf asd dsfasdf dsfdsf@hotmail.com';
$str[] = 'd s f d s f a t h o t m a i l . c o m';
function clean_text($text){
$pattern = '/(\ba[ \.\-_]*t\b|@)[ \.\-_]*(.+)[ \.\-_]*(d[ \.\-_]*o[ \.\-_]*t|\.)[ \.\-_]*(c[ \.\-_]*o[ \.\-_]*m|n[ \.\-_]*e[ \.\-_]*t|o[ \.\-_]*r[ \.\-_]*g|([a-z][ \.\-_]*){2,3}[a-z]?)/iU';
return preg_replace($pattern, '***', $text);
}
foreach($str as $email){
echo clean_text($email);
}
Expected Output:
dsfatasdfasdf asd dsfasdf dsfdsf***
I live at school where My address is dsfdsf@***
I live at school. My address is dsfdsf@***
***
dsf ***
d s f d s f ***
Result:
dsfatasdfasdf asd dsfasdf dsfdsf***
I live ***
I live ***
at school my address is dsfdsf****
dsf ***
d s f d s f ***
Problem: It catches the first occurrence of "at", and not the last, so the following happens:
input: 'at school my address is dsfdsf@hotmail.com'
produces: '****'
should produce: 'at school my address is dsfdsf****'
Bunu nasıl düzeltebilirim?