私はいくつかのHTMLコードを扱っていますが、何か問題がありました。ここにいくつかのコードの抜粋であり、フォーマットは私がsedを使用して一致するパターンの前に行を挿入する方法
<tr>
<td nowrap valign="top"
と一致し、私はパターンに一致しなければならないよう<tr>
.theの問題が発生する前に何かを挿入する必要がまったく同じ
<tr>
<td nowrap valign="top" class="table_1row"><a name="d071301" id="d071301"></a>13-Jul-2011</td>
<td width="21%" valign="top" class="table_1row"><a href="http://www.info.htm" target="_blank">LCQ8: Personal data of job</a></td>
です異なる行に 私は問題を把握するための2つの寸法を有するworks.Soテストする
grep -c "<tr>\n<td nowrap valign="top"" test.html
grep -c "<tr>\n*<td nowrap valign="top"" test.html
grep -c "<tr>*<td nowrap valign="top"" test.html
を試していないが、それらのどれもしている:
を
- マッチ
<td nowrap valign="top" and insert in the line above
- マッチ文字列全体に
<tr>
<td nowrap valign="top"
いずれにしても誰にでもやってみる方法はありますか?
[あなたを助けることができる前に、私は上げ、この同様の質問を願っています] [1] [1]:http://stackoverflow.com/質問/ 6624199/how-can-i-append-a-string-of-the-first-of-a-patternのパターン –
http://stackoverflow.com/q/6732702/7552 –