Regular Expressions 101

Community Patterns

Multiple substrings between string and a space

1

Regular Expression
PCRE2 (PHP >=7.3)

/
orderNumber : (?P<orderNumber>[^\s]+).*?orderType : (?P<orderType>[^\s]+).*?orderCompany : (?P<orderCompany>[^\s]+).*
/
gms

Description

Multiple substrings between string and a space

Submitted by anonymous - 3 months ago