Community Patterns

Community Library Entry

2

Regular Expression
Created·2014-08-20 21:43
Flavor·PCRE (Legacy)

/
(?<protocol>s?ftp):\/\/(?:(?<user>[^@\s]+)@)?(?<host>[^\?\s\:]+)(?:\:(?<port>[0-9]+))?(?:\?(?<password>.+))?
/
g
Open regex in editor

Description

Parse an SFTP or FTP url and brak it into named capture groups.

Submitted by Cullen Johnson