匹配img标签 js正则表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了匹配img标签 js正则表达式相关的知识,希望对你有一定的参考价值。
用js将类似<img src="img/fxxx.png" />的img标签,全部替换成fxxx(xxx表示三位数字) 。求大神指导
<html><head>
<!--
将此内容保存为 html 文件,浏览器允许运行脚本进行测试。
-->
<script type="text/javascript">
function check()
var str;
str = document.getElementById("txtInput").value;
alert("替换结果:" + str.replace(/<img[^>]+img\\/([^>"]*)"[^>]+\\/>/, "$1"));
</script>
</head>
<body>
输入:<input type="text" id="txtInput" value='xxxx <img src="img/fxxx.png" /> xxxx' />
<button type="button" onclick="check()">正则替换</button>
</form>
</body>
</html> 参考技术A (&lt;IMG[&#92;w&#92;W].+?&gt;)
正则表达式匹配img标签中的src获取地址
import java.util.regex.Matcher; import java.util.regex.Pattern; public class aa public static void main(String[] args) String htmlStr = "<img src=‘http://1231//1231/123/123.jpg‘ alt=‘图片‘>"; Matcher m = Pattern.compile("src=\"?(.*?)(\"|>|\\s+)").matcher(htmlStr); String filePath = ""; while(m.find()) filePath = m.group(1); System.out.println(filePath); System.out.println(filePath.substring(filePath.lastIndexOf("/")+1,filePath.length()-1));
以上是关于匹配img标签 js正则表达式的主要内容,如果未能解决你的问题,请参考以下文章
js正则匹配替代指定字符(根据img标签的src中的命名规则,用正则表达式替换成下面格式的文字)
js使用正则表达式将字符串里面的img标签src的值提取出来
如何用正则表达式匹配除了img标签的所有其他标签 匹配所有html标签我知道: /<[^>]+>/g 关键排除img标签