I have a bunch of webpage content in my database with the following links:
<a href="/11ecfdc5-d28d-4121-b1c9-1f898ac0b72e">Link</a>
This unique Guid identifier is the identifier of another page in the same database.
I would like to crawl these pages and check for broken links.
To do this, I need a function that can return a list of all the Guides on the page:
Function FindGuids (ByVal Text As String) As Collections.Generic.List (Of Guid)
...
End function
I believe this is a regular expression job. But I do not know the syntax.
source
share