我想要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?
答案 0 :(得分:1)
<img [^>]*src=".*?[^\]"[^>]*/>
您可能需要将\
写为\\