Community Patterns

Community Library Entry

2

Regular Expression
Created·2024-09-23 16:26
Flavor·ECMAScript (JavaScript)

/
(https?:\/\/)?github\.com\/(?<author>[\w-]+)\/(?<repo>[\w-]+)\/?(tree\/)?(?<branch>[\w-]+)?
/
gm
Open regex in editor

Description

A regular expression for extracting the author, repository name, and optional branch from a GitHub repository or tree URL. Handles both HTTP(S) and direct GitHub links.

Submitted by Xain