For the complete documentation index, see llms.txt. This page is also available as Markdown.

remove

This section contains reference documentation for the remove function.

Removes all instances of search from string

Signature

remove(input, search)

Usage Examples

select remove('foo bar foo sheep', 'foo') AS value
from ignoreMe
value

bar sheep

Was this helpful?