我在图片标记
中有图片<img alt=\"\" src=\"https://my.guidedoc.co/frontend/download.php?file=5a2b0fe5cc7f8004d975b6df7d4e3233.PNG&filename=Figure 1 Summary of diagnosis of sepsis.PNG\" style=\"height:295px; width:799px\" />
想要提取文件名“图1 sepis.PNG诊断摘要”,它位于使用正则表达式链接的末尾。有人可以帮忙吗?
答案 0 :(得分:1)
你可以尝试:
var rx = new RegExp("filename=([^\\\\\"]+)");
var textvar = "<img alt=\\\"\\\" src=\\\"https:\/\/my.guidedoc.co\/frontend\/download.php?file=5a2b0fe5cc7f8004d975b6df7d4e3233.PNG&filename=Figure 1 Summary of diagnosis of sepsis.PNG\\\" style=\\\"height:295px; width:799px\\\" \/>";
var match = rx.exec(textvar)[1];
document.write(match);
&#13;