Regular Expressions 101

Community Patterns

0

回溯

PCRE (PHP <7.3)
no description available
Submitted by anonymous - 4 years ago
0

TNRid

PCRE (PHP <7.3)
^-|\b\d.{0,20}.$
Submitted by anonymous - 4 years ago

Replace all newlines (except double newlines) with spaces

0

Regular Expression
PCRE (PHP <7.3)

/
([^\n])\n(?=[^\n])
/
gm

Description

Loading markdown...
Submitted by anonymous - a year ago