Regular Expressions 101

Community Patterns

Extract First Word in a String with Anchor Start and Anchor End

0

Regular Expression
PCRE (PHP <7.3)

/
^\b(?<cRegexGroupsName>.*?)\s
/
gm

Description

Extract First Word in a String with Anchor Start and Anchor End

Submitted by anonymous - 3 years ago