Thank you, Erel!
I've tried with the following to be able to distinguish with other image files:
Dim m As Matcher = Regex.Matcher(""\"" src=\""([^""]+)\""", text)
Do While m.Find
Log(m.Group(1))
Loop
The results were:
js/floating.js
image/Kim_Hyo.jpg
I just need to get the image file name.
The html file has a several images with different img id.
Is there any way that can extract the bold and underlined one from the below html codes?
<div class="img"><img id="imgid48" src="
image/Kim_Hyo.jpg" alt="Kim_Hyo" width="220" height="220" onClick="toggleIt('id48a')"><div class="desc" id="name48">Kim Hyo</div><div class="desc" id="id48a">?</div></div>
<script type="text/javascript" src="
js/floating.js"></script>
My desired result should be:
image/Kim_Hyo.jpg
I hope this is not confusing.
Thank you in advance.