Returns all URLs from the text in the full Url format. http://...

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static MatchCollection GetUrls(
	string content
)
Visual Basic
Public Shared Function GetUrls ( 
	content As String
) As MatchCollection
Visual C++
public:
static MatchCollection^ GetUrls(
	String^ content
)
F#
static member GetUrls : 
        content : string -> MatchCollection 

Parameters

content
Type: System..::..String
HTML content.

Return Value

Type: MatchCollection
Match collection with all URLs from the HTML.

See Also