Vi 编辑器可以在 html 文件中显示 \n、\t、\s 等吗?

发布于 2024-11-25 10:17:16 字数 411 浏览 0 评论 0原文

 <tr>$
                                  <td nowrap valign="top" class="table_1row"><a name="d071301" id="d071301"></a>13-Jul-2011</td>$

我想匹配 tr>$

grep -c "tr>\n<td nowrap valign" test.html

然后我也尝试了

grep -c "tr>\n\s*<td nowrap valign" test.html

他们都没有发现任何结果。这里有什么错误?

 <tr>$
                                  <td nowrap valign="top" class="table_1row"><a name="d071301" id="d071301"></a>13-Jul-2011</td>$

i would like to match tr>$

grep -c "tr>\n<td nowrap valign" test.html

then i also tried

grep -c "tr>\n\s*<td nowrap valign" test.html

both of them find nothing. What error here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2024-12-02 10:17:16

当您在 vi 中打开文件时。尝试:se list。它将 \n 显示为 $,将 \t 显示为 ^I

When you open the file in vi. Try :se list. It shows \n as $ and \t as ^I.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文