For example,
Say I want to change
all occurances of <img src="https://www.blahblah.com/i" title="Bob" />
To simply
Bob
This is for vb.net
Basically there are plenty of such pattern in a big string. I want to change every one of them.
This is what I tried
Dim tdparking = New System.Text.RegularExpressions.Regex("\w* (<img.*title="")(.*)"" />")
After that I suppose I would need to do some substitution. But how?
How would I do so?