Regular Expressions 101

Community Patterns

XTrim

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(^[[:blank:]]+|[[:blank:]]+$|([[:blank:]])[[:blank:]]+)
/
gm

Description

Remove spaces at the beginning and end of a sentence. It also replaces N consecutive spaces with a single one.

Submitted by abrittaf - a year ago