• 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

Viewing 1 replies (of 1 total)
  • Its easy enough to hook into WP’s post/display functions to make this happen, if you can cook up the right search/replace strings.

Viewing 1 replies (of 1 total)

The topic ‘Text Corrector, Please Advice’ is closed to new replies.