我目前正在编写一个 PHP 脚本来检查和纠正错误输入的电子邮件地址。如果输入为:htomail.com,脚本会将其更改为 hotmail.com
我正在使用以下代码(所有可能的拼写错误):
$input = 'bill.gates@htomail.com';
$pattern = '/htomail.com/';
$replacement = 'hotmail.com';
$output = preg_replace($pattern, $replacement, $input);
echo $output;
等等
但我想知道是否可以使用(某种)拼写检查/自动更正功能来更正所有可能的拼写错误。