Regular Expressions 101

Community Patterns

First letter of each word

0

Regular Expression
ECMAScript (JavaScript)

/
(^|\s)[a-z]
/
gm

Description

Lowercase whole line to make it work

Submitted by PolyFlower - 2 years ago