用于在 Dreamweaver 中填充选项值的正则表达式
我在 Dreamweaver 中的选择框代码中有一个选项列表,如下所示:
<option value="">Corby</option>
<option value="">Coventry</option>
<option value="">Craigavon</option>
<option value="">Cramlington</option>
我需要遍历 HTML 并将每个选项中的任何内容显式添加到值中,所以我想要这样:
<option value="Corby">Corby</option>
<option value="Coventry">Coventry</option>
<option value="Craigavon">Craigavon</option>
<option value="Cramlington">Cramlington</option>
是否有一个正则表达式可以保存我的手动执行此操作是否乏味(英国有很多城市......)?提前致谢。
I have a list of options in my select box code in Dreamweaver, like this:
<option value="">Corby</option>
<option value="">Coventry</option>
<option value="">Craigavon</option>
<option value="">Cramlington</option>
I need to go through the HTML and explicitly add whatever is in each option to the value, so I want this:
<option value="Corby">Corby</option>
<option value="Coventry">Coventry</option>
<option value="Craigavon">Craigavon</option>
<option value="Cramlington">Cramlington</option>
Is there a regex that can save me the tedium of doing this manually (there are loads of cities in the UK...)? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信您应该能够
找到
这个:并用这个
替换
它:如果有失败的情况,请告诉我
I believe you should be able to
Find
this:and
Replace
it with this:Please let me know if there are situations where this fails
在 Visual Studio 中,我们使用
查找内容:
替换为
In Visual Studio we use
Find what:
Replace with
我不知道 Dreamweaver 支持什么风格的正则表达式,但这会起作用:
顺便说一下,这是 Perl。如果您需要其他版本,请告诉我;)
I don't know what flavor of regex dreamweaver supports but this will work :
This is perl by the way. If you need another version let me know ;)