Advertisement
Anonim_ID

Regex Example | Get All URL

Aug 6th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.38 KB | None | 0 0
  1. Imports System.Text.RegularExpressions
  2. Public Class Form1
  3.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  4.         For Each myMatch1 As Match In New Regex("<a href=""(.*?)""", RegexOptions.None).Matches(RichTextBox1.Text)
  5.             ListBox1.Items.Add(myMatch1.Groups.Item(1))
  6.         Next
  7.     End Sub
  8. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement