Could someone help explain the following line of code. This code is from the flickr example... I pretty sure I have this right -- pattern and class are string variables...and QUOTE = char(34) which is quote -- thus:
class= <td class="Photo"> (this makes sense)
I have looked at the webpage (Flickr: Explore interesting photos from the last 7 days in FlickrLand...) page source and just do not get replacing q with quotes in the pattern string...???...(i.e. String.Replace("q",QUOTE))
Dim pattern, class As String
class = "<td class=" & QUOTE & "Photo" & QUOTE & ">"
pattern = "img src=\q([^q]+)\q".Replace("q", QUOTE)
...sorry for posting this in the wrong place...
class= <td class="Photo"> (this makes sense)
I have looked at the webpage (Flickr: Explore interesting photos from the last 7 days in FlickrLand...) page source and just do not get replacing q with quotes in the pattern string...???...(i.e. String.Replace("q",QUOTE))
Dim pattern, class As String
class = "<td class=" & QUOTE & "Photo" & QUOTE & ">"
pattern = "img src=\q([^q]+)\q".Replace("q", QUOTE)
...sorry for posting this in the wrong place...
Last edited: