SQL: regex for removing certain part of a string

Viewed 28

How can I remove {color:#de350b} and {color} from:

{color:#de350b}FA_RDA_CORE-DEC-20220325122114-210-981{color}

to get:

FA_RDA_CORE-DEC-20220325122114-210-981
1 Answers

Good day. Can you try this? Please don't forget substitution with "$5".

Regex101ttps://regex101.com/r/aDJzUf/1

Related