unsing sed to strip html tags - help

Hi,
I am trying to strip html tags of a string for example

<TD>no problem</TD>

the sesult should be

no problem

but could never get rid off all the tags
sed 's/<..D>//g'

Please help, I am new

sed 's@<\([^<>][^<>]*\)>\([^<>]*\)</\1>@\2@g'

That works!
thanks home_king
The previuos one also worked but this one looks real complecated!

The complication of the pattern expression is determined by the situation.
There exists more possibility of modification of it. :slight_smile: