I have a string, lets say:
<lic><ic>This is a string</ic>, welcome to my blog.</lic>
I want to use sed to get rid of the <ic>
and </ic>
tags, as well as the literal tags <lic>
and </lic>
What is the fastest way to do this? I'm very new to sed. How would this be done in awk? I know awk is much better for column-like text, so I feel more inclined to learn how to use sed.
Any help is always appreciated, thanks in advance!