Regular Expressions 101

Community Patterns

Match stackoverflow urls

0

Regular Expression
PCRE (PHP <7.3)

/
(^(?:stackoverflow\.com)?[\/]*([cv|users|story]?[\/\w\-\.]*)$)|(^(?:http?:\/\/|https?:\/\/)?(?:www\.)?stackoverflow\.com\/(?:\/*)([\w\-\.\/\%]*))
/
gm

Description

Get only the profile part without the url.

Submitted by Chocksy - 7 years ago