Using Regular expression on routing
Page 1 of 1
Using Regular expression on routing
Regular expressions, also referred to as regex or regexp, provides a concise and flexible means for matching strings of text, such as particular characters, words, or patterns of characters. A regular expression is written in a formal language that can be interpreted by a regular expression processor, a program that either serves as a parser generator or examines text and identifies parts that match the provided specification.
Regular expressions are extensively used in computing and is really powerful. You can think of regular expressions as wildcards on steroids. You are probably familiar with wildcard notations such as *.txt to find all text files in a file manager, the equivalent regex would be :
/.*\.txt$/
Regular expression quick start guide
Regular expressions are extensively used in computing and is really powerful. You can think of regular expressions as wildcards on steroids. You are probably familiar with wildcard notations such as *.txt to find all text files in a file manager, the equivalent regex would be :
/.*\.txt$/
Regular expression quick start guide
Similar topics
» Reg Expression to add plus sign (+) to outbound route
» can we do a regex expression in the call trace?
» MS Teams Routing
» SIP - Domain Routing
» Label Routing and Regex
» can we do a regex expression in the call trace?
» MS Teams Routing
» SIP - Domain Routing
» Label Routing and Regex
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum