vote up 1 vote down star

How can I insert newlines in an html file before each table related tag using sed?

flag

3 Answers

vote up 1 vote down

matches opening & closing tags:

sed "s/\(<\/\?\(table\|tr\|td\)\)/\n&/gi"

opening tags only:

sed "s/\(<\(table\|tr\|td\)\)/\n&/gi"

closing tags only:

sed "s/\(<\/\(table\|tr\|td\)\)/\n&/gi"
link|flag
vote up 1 vote down
sed -e "s/<\\(table\\|td\\|tr\\)/\\
<\\1/gi"

Add other element names you are interested in. Not 100% perfect either: it does not cater for all of HTML weirdness, but then sed will never be enough.

link|flag
Don’t forget the elements THEAD, TBODY, TFOOT, CAPTION, COLGROUP, COL and TH. – Gumbo Feb 19 at 13:45
vote up 0 vote down

This should be a basic solution

sed -s "s/<\(\/\?\)\(t\)/\n<\1\2/gi"

Not 100% perfect as it will ignore col, colgroup and catch the telytype tag but chances are you arn't using either those.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.