Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
/^From:\s*"\Q$NAME\E".*$ \s* ^To:\s*<sip:\Q$INBOUND_NUMBER\E@.*$ \s* ^Call-ID:\s*(.*)/mgx

And the idea behind:

  • Use ^, $ and //m as line delimiter - we search for three lines: /^something$ \s* ^something2$ \s* ^something3$/m. That assures the regexp will match nearest three lines and not first, second and 300th line. I don't understand why after $ and before ^ regexp must have \s* to catch any newline characters (notice that you don't have to worry which system you are working on, which line delimiters you have, just \s*). It seems $ matches the place right before newline character.
  • Now that three parts of regexp are limited to single line (I like that limitation and try to achieve it every time to avoid //s), let's limit variables: I suggest to limit $NAME by "" and $INBOUND_NUMBER by 'sip:' and '@'. That will assure regexp won't match on $NAME="Kevin Black" when there is 'From: "Kevin Blackwood"'

In reply to Re: Soliciting Multiline SIP Searching Suggestions by grizzley
in thread Soliciting Multiline SIP Searching Suggestions by $dancarlson

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-03-28 14:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found