我是用javascript在開發
要找 "<script src='xxxx'/></script>" 這樣型式的字串
但是像 "<script></script>" 這樣在script tag裡沒有src的就不要找出來
而且 "<script" 開頭後,在出現 "src=" 前,也可能會有別的字串,不一定是一個空格
例如可能會是 <script type='text/javascript' src='xxx'></script>
也就是只要"<script" 開頭,且 script tag 裡面有出現 "src=" 就要找出來
我現在是用
/<script\b[^>]*>([\s\S]*?)<\/script>/g
不知各位先進是否能提供解決方法
謝謝