Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
awk '{gsub(/<[^<>]*>/,"");print}' /input/file
awk '{print gensub(/.*<text_string>(.*)<\/text_string>.*/,"\\1","")}' /input/file
I prefer [tt]sed[/tt].viadisky said:I prefer using awk
sed 's/<[^<>]*>//g' /input/file
[gray]# or[/gray]
sed 's/.*<text_string>\(.*\)<\/text_string>.*/\1/' /input/file