> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Search & Replace

> Find and replace across every file in your dbt™ repository with case, whole-word, and regular expression options in the Code IDE Search panel.

export const Arcade = ({src, title}) => <div style={{
  position: 'relative',
  paddingBottom: 'calc(56.2225% + 41px)',
  height: 0,
  width: '100%'
}}>
    <iframe src={src} title={title} frameBorder="0" loading="lazy" allow="clipboard-write" allowFullScreen style={{
  position: 'absolute',
  top: 0,
  left: 0,
  width: '100%',
  height: '100%',
  colorScheme: 'light'
}} />
  </div>;

In the Code IDE you can find and replace across multiple files in your repository. Open the **Search** panel from the magnifying glass icon in the left icon strip (`⌘⇧F` / `Ctrl+Shift+F`) and enter the term you want to search for.

<Arcade src="https://demo.arcade.software/FNzf9MoSVFuRev6wI2Yb?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Find and Replace" />

### Advanced Search Toggles

You can refine your search using advanced search toggles:

| Advanced Search Toggle      | Description                                                                                    | Example                                                                                                |
| --------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| **Match Case**              | Match the exact case of the search term.                                                       | **Search term**: `Date`**Matches**: `Date`**Does not match**: `date`                                   |
| **Match Whole Word**        | Match the whole word only.                                                                     | **Search term**: `date`**Matches**: `date`**Does not match**: `order_date`                             |
| **Use Regular Expressions** | Use regular expressions for more complex searches.                                             | **Search term**: `date*`**Matches**: `date`, `dates`, `dated`**Does not match**: `database`, `mandate` |
| **Include Ignored Files**   | Include file types that are normally ignored by the search (e.g., files listed in .gitignore). | **Search term**: `date`**Matches**: `date` in files like `.md`, `.json`, `.log`, etc.                  |

### Current File Find & Replace

Paradime allows you to quickly find text and replace it in the currently opened file. Press `⌘F` on macOS or `CTRL+F` on Windows to open the Find widget in the editor. The search results will be highlighted in the editor, overview ruler and minimap.

If there is more than one matched result in the current opened file, you can press `Enter` or `⇧Enter` to navigate to the next or previous result when the find input box is focused.

<Arcade src="https://demo.arcade.software/PIPiIN7VhgSITKV8KpAU?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Find and Replace" />


## Related topics

- [Explore Your Project](/products/code-ide/explore/index.md)
- [Search and Discovery](/products/data-catalog/lineage/search-and-discovery.md)
- [Global Search](/guides/paradime-fundamentals/global-search/index.md)
- [Code Search Tool](/products/dino-ai/tools-and-features/code-search-tool.md)
- [Web Search Tool](/products/dino-ai/tools-and-features/web-search-tool.md)
