Jul 17 2008

extract/get email address from string using vb.net

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Here is a simple VB.Net code to extract email addresses from a string

Imports System.Text.RegularExpressions
 
Public Class Form1
 
Private Sub btnExtract_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExtract.Click
 
Dim [...]