Community Patterns

Community Library Entry

0

Regular Expression
Created·2022-01-17 08:42
Flavor·PCRE2 (PHP)

/
^((https:\/\/)|(http:\/\/))
/
gmi
Open regex in editor

Description

Remove either "HTTPS://" or "HTTP://" from the beginning of any string. Flags for multi-line and case-insensitive search are set. Multiline matches text if it is the beginning of the new line. Only matches the beginning of the string or of a new line.

Submitted by anonymous