Regular Expressions 101

Community Patterns

Strip or Trim spaces at start, end and between words.

0

Regular Expression
PCRE (PHP <7.3)

/
^\s+|\s+$|\s+(?=\s)
/
g

Description

Removes spaces from begining, end and between words. " Hello There " = "Hello There"

Submitted by anonymous - 4 years ago