Regular Expressions 101

Community Patterns

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

-1

Regular Expression
PCRE (PHP <7.3)

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

Description

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

Submitted by anonymous - 3 years ago