Blog FQSoft

Just Simple Code Documentation

Regex

Kamus Regex

Faiq Himmah 05 January 2024
[ Gambar Post ]

Untuk Generate Regex : https://regex-generator.olafneumann.org

Untuk Test Regex : https://regex101.com

Replace Berdasar Daftar Text
public function stopWordRemover($kalimat){
    $commonWords = array(
        'yang', 'untuk', 'pada', 'ke', 'para', 'namun', 'menurut', 'antara', 'dia', 'dua'
    );

    return preg_replace('/\b('.implode('|',$commonWords).')\b/','',$kalimat);

}
Hapus Kata Ulang Misal: masing-masing, menjadi "masing"
$kalimat = preg_replace("/-[A-Za-z]+/", '', $kalimat);
Hapus Special Character
$kalimat = preg_replace("/[^\p{L}\p{N}\s]/", '', $kalimat);
regex