Skip to main content
Find and replace text

Search for or switch out words in docs and drafts

Updated this week

Find text

You can find and replace words or phrases in individual documents and drafts. To get started, click on Find and replace in the right-hand panel (the one with the magnifying glass icon) or type in / Ctrl + F on your keyboard.

Pro tip: Want to use your browser’s in-tab search? Just type / Ctrl + F a second time.

Enter the word(s) you want to find—Ellipsus will highlight matching text as you type. If you want to be extra specific, you can check Match case to find words with the same capitalization or Whole words only to match the exact word.

If your search yields results, you can use the arrow keys to navigate to each occurrence. You can also type / Ctrl + G or / Ctrl + Shift + G to go the next or previous result.

Replace text

You can replace an individual occurrence of a word or replace every occurrence in your document or draft.

Want to compare or restore changes? Learn more about merging drafts and working with version history.

Advanced: Work with regular expressions

With regular expressions (or regex), you can perform more advanced searches.

Here are a few examples you might find particularly useful.

Replace all quotes with smart quotes / curly quotes

This would turn "hello" into “hello”.

Use case

Find

Replace

Replace opening quote with smart quote

(\s|^)"(.)

$1“$2

Replace closing quote with smart quote

"(\s|$|\p{P})

”$1

If a starting / ending quote is nested between words without whitespace—like he said"hello"and waved—the above regex will not work.

Replace all apostrophes with smart apostrophes / curly apostrophes

This would turn 'hello' into ‘hello’ or can't into can‘t or Chris' into Chris’.

Use case

Find

Replace

Replace opening single quote with smart apostrophe

(\s|^)'(.)

$1‘$2

Replace closing single quote with smart apostrophe

'(\s|$|\p{P})

’$1

Replace apostrophe in a word with smart apostrophe

(\w)'(\w)

$1’$2

Regular expressions offer a lot of potential when editing your work. If you'd like to learn more about working with regex, head to https://regex101.com/.

Did this answer your question?