使用javascript进行img src的正则表达式

时间:2011-04-19 06:30:13

标签: javascript

我想要RE用于这个字符串模式:

src="http://www.prphotos.com/f/1335/CSM-001335/Robert-Pattinson,-Reese-Witherspoon-Water-for-Elephants-New-York-City-Premiere---Arrivals.jpg"  border="0"

我正在使用:

<img.[\w+\s+\d+\W]*/>

我是否还必须为不同的语言(如javascript,PHP等)编写不同的RE?

1 个答案:

答案 0 :(得分:1)

<img [^>]*src=".*?[^\]"[^>]*/>

您可能需要将\写为\\