我要提取所有有此caracters之間:正則表達式來提取URL
<a href="/url?q=(text to extract whatever it is)&
我嘗試這種模式,但它不是爲我工作:
/(?<=url\?q=).*?(?=&)/
我在編程Vb.net,這是代碼,但我認爲問題是這種模式是錯誤的:
Dim matches As MatchCollection
matches = regex.Matches(TextBox1.Text)
For Each Match As Match In matches
listbox1.items.add(Match.Value)
Next
你能幫我嗎?
我在http://rubular.com/測試您的正則表達式和它的確定。 – dotoree 2012-03-03 17:35:46