Action

Remove OBJ Character

Posted by @DavidAns, Last update over 3 years ago

Removes any instances of the Object Replacement Character (“OBJ”) that is invisibly added to text by dictation.

Steps

  • script

    // Removes any instances of the Object Replacement Character (“OBJ”) that is invisibly added to text by dictation.
    const beforeText = editor.getText();
    const afterText = beforeText.replace(/\ufffc/g, "");
    editor.setText(afterText);

Options

  • After Success Default
    Notification Info
    Log Level Info
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.