> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/removesymbols.md).

# RemoveSymbols

Removes the specified characters from an input string

```mathematica
RemoveSymbols("M@cD0onal1ds", "@", "1", "0") → "McDonalds"
RemoveSymbols("123000,56", ",") → "12300056"
```

#### Inputs

`RemoveSymbols(string, toRemove…)`

* `string` - A text value
* `toRemove...` - One or more symbols to remove
