Dreamweaver 中的正则表达式 - 生成数字序列
我有一个 HTML 页面,其中包含一长串表格格式的数据(2194 个条目!),每个数据都以
<td id="foo"...>
I need every id to be unique 开头,因此希望在 Dreamweaver 的查找和替换功能中使用正则表达式来执行此操作这。基本上,之前看起来像这样:
<td id="foo"...>
<td id="foo"...>
<td id="foo"...>
并且,使用正则表达式,更改为:
<td id="001"...>
<td id="002"...>
<td id="003"...>
这可能吗?如果是这样,表达式的语法是什么?
提前致谢!
I've got an HTML page with a long series of data in tabular format (2194 entries!), each starting with
<td id="foo"...>
I need each id to be unique, and so would like to use a regular expression in Dreamweaver's find and replace function to do this. Basically, it would look like this before:
<td id="foo"...>
<td id="foo"...>
<td id="foo"...>
and, using the regular expression, changed to:
<td id="001"...>
<td id="002"...>
<td id="003"...>
Is this possible? And, if so, what's the syntax of the expression?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是使用文本编辑器中的简单查找/替换之类的东西,而是通过某种 HTML DOM 脚本运行它。这是一些类似 jQuery 的伪代码:
Instead of using something like a simple find/replace from a text editor, I'd run it through some kind of HTML DOM script. Here's some jQuery-ish pseudocode: