我在試圖捕捉一組上一個字符串的問題:紅寶石正則表達式:如果匹配子不存在
"type=gist\nYou need to gist this though\nbecause its awesome\nright now\n</code></p>\n\n<script src=\"https://gist.github.com/3931634.js\"> </script>\n\n\n<p><code>Not code</code></p>\n"
我正則表達式目前看起來是這樣的:
/<code>([\s\S]*)<\/code>/
我的目標是在代碼括號之間取得所有內容。不幸的是,它是匹配到第二個結束代碼括號有沒有一種方法來匹配代碼括號內的所有內容,直到第一次出現結束代碼括號?
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 – Reactormonk