仅从给定列中删除给定字符串?

仅从给定列中删除给定字符串?

输入:

<tr><td>FOOBAAR</td><td>FOOO</td><td>BAAR</td><td><font style=BACKGROUND-COLOR:red>2014-02-14 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-02-17 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-03-07 13:34</font></td></tr>

输出:

<tr><td>FOOBAAR</td><td>FOOO</td><td>BAAR</td><td>2014-02-14 13:34</td><td><font style=BACKGROUND-COLOR:red>2014-02-17 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-03-07 13:34</font></td></tr>

区别: 的:

<font style=BACKGROUND-COLOR:red>

</font>

仅从第四列中删除。

我的问题:如何从给定列中仅删除给定字符串?

</td><td>

是分隔符

答案1

我建议使用 HTML 解析工具而不是使用正则表达式。 (著名答案解释了原因这里

下面是使用 XML 解析器的示例(注意:要求输入是格式良好的 XML,而您的示例 HTML 不是)

# change the value of the style attribute of the font tag of the 4th td tag 
# to the empty string
xmlstarlet ed -O -u '//table/tr/td[4]/font[@style]/@style' -v "" <<END
<html><head></head><body><table>
<tr><td>FOOBAAR</td><td>FOOO</td><td>BAAR</td><td><font style="BACKGROUND-COLOR:red">2014-02-14 13:34</font></td><td><font style="BACKGROUND-COLOR:red">2014-02-17 13:34</font></td><td><font style="BACKGROUND-COLOR:red">2014-03-07 13:34</font></td></tr>
</table></body></html>
END
<html>
  <head/>
  <body>
    <table>
      <tr>
        <td>FOOBAAR</td>
        <td>FOOO</td>
        <td>BAAR</td>
        <td>
          <font style="">2014-02-14 13:34</font>
        </td>
        <td>
          <font style="BACKGROUND-COLOR:red">2014-02-17 13:34</font>
        </td>
        <td>
          <font style="BACKGROUND-COLOR:red">2014-03-07 13:34</font>
        </td>
      </tr>
    </table>
  </body>
</html>

答案2

这可以工作..

#!/bin/sh

# replace specific strings from the fourth column
INSTRING="<tr><td>FOOBAAR</td><td>FOOO</td><td>BAAR</td><td><font style=BACKGROUND-COLOR:red>2014-02-14 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-02-17 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-03-07 13:34</font></td></tr>"

DEL_STRING1="<font style=BACKGROUND-COLOR:red>"
DEL_STRING2="</font>"
DELIM="</td><td>"
OUT_FIRST=`echo $INSTRING | awk -F $DELIM '{print $1,$2,$3,$4}' OFS="</td><td>"`
OUT_FIRST=`echo $OUT_FIRST | awk -F "$DEL_STRING1" '{print $1,$2}' OFS=""`
OUT_FIRST=`echo $OUT_FIRST | awk -F "$DEL_STRING2" '{print $1}'`
OUT_LAST=`echo $INSTRING | awk -F $DELIM '{print substr($0, index($0,$5))}' OFS=$DELIM`
echo "$OUT_FIRST$DELIM$OUT_LAST"

答案3

awk 一行命令,

$ awk -F '<\/td><td>' 'BEGIN{OFS=FS;} {gsub (/<font style=BACKGROUND-COLOR:red>/,"",$4); gsub (/<\/font>/,"",$4);}1' file 2>/dev/null
<tr><td>FOOBAAR</td><td>FOOO</td><td>BAAR</td><td>2014-02-14 13:34</td><td><font style=BACKGROUND-COLOR:red>2014-02-17 13:34</font></td><td><font style=BACKGROUND-COLOR:red>2014-03-07 13:34</font></td></tr>

答案4

sed 's|</td><td>|</td>\nTGT_LINE_MARKER<td>|4' |
sed '\|TGT_LINE_MARKER|{function applied to target field}'

相关内容