Regular Expressions 101

Community Patterns

0

Zabbix

PCRE (PHP <7.3)
no description available
Submitted by anonymous - 3 years ago

Capture the last space in a line of text with Negative Lookback

1

Regular Expression
PCRE (PHP <7.3)

/
(?<!\s)(\s)(?:\S+?)(?:\r\n?|\n|\z)
/
g

Description

Loading markdown...
Submitted by anonymous - 6 years ago