Regular Expressions 101

Community Patterns

Find between a space and a char/string with lookahead

0

Regular Expression
Python

r"
(?s)(?<=\s)\w*(?=\-.*)
"
s

Description

no description available

Submitted by anonymous - 6 years ago