Regular Expressions 101

Community Patterns

Substring Matching Word, Hyphen, Underscores and Digits

0

Regular Expression
PCRE (PHP <7.3)

/
([\w-]+[_][\w-]*)
/
gm

Description

Matches customer portion of call detail records found in the fields dcontext, lastdata, and usefield of an Asterisk CDR table. Additional processing required to get fully clean values.

Submitted by lindstrom - 8 years ago