Regular Expressions 101

Community Patterns

select github username from url

1

Regular Expression
PCRE (PHP <7.3)

/
(?:http?:\/\/|https?:\/\/)?(?:www\.)?github\.com\/(?:\/*)([\w\-\.\/]*)
/
gm

Description

select the github username from url

Submitted by chocksy - 8 years ago