有一些带有"脚本的字符串"标签,例如:
我需要让RegExp将src属性的内容替换为' newSrc'变量。此正则表达式必须允许在src属性中使用双引号和普通引号。我想到了
MinHeight
但我不确定。提前谢谢!
答案 0 :(得分:0)
我会尝试一下。在一些网站上测试过,似乎工作正常。 但是它假定在src属性中不会有空格字符(它不应该包含它,因为它不允许 - 需要对空格进行编码)。
var regex = /src=['"]([^\s]+)['"]/; // there is a capturing group so that you can view just the stuff in src.