Text Corrector, Please Advice
-
Hello,
Can anyone suggest or help me to find a plugin which could correct text.
etc.
When people write text then they make common mistakes like entering 2 spaces and misusing commas.
Hey , I’m Mike
Could be corrected Hey, I’m Mike
With some other CMS I used to use my own replacement strings like:
$string = str_replace(” “, ” “, $string);
$string = str_replace(“,”, “, “, $string);
$string = str_replace(“.”, “. “, $string);
$string = str_replace(“. . .”, “…”, $string);
$string = str_replace(“!”, “! “, $string);
$string = str_replace(“?”, “? “, $string);
$string = str_replace(“´”, “‘”, $string);
$string = str_replace(“? ?”, “??”, $string);
$string = str_replace(“? ? ?”, “???”, $string);
$string = str_replace(“! !”, “!!”, $string);
$string = str_replace(“! ! !”, “!!!”, $string);
$string = str_replace(“. ””, “.””, $string);
$string = str_replace(“? ””, “?””, $string);
$string = str_replace(“! ””, “!””, $string);I would be very thankful if anyone could help me out here.
Thanks,
Ron
The topic ‘Text Corrector, Please Advice’ is closed to new replies.