Results 1 to 10 of 17

Thread: "Outgoing Call Routes"

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #7
    Join Date
    Jul 2007
    Location
    Irvine CA
    Posts
    519

    Default Re: "Outgoing Call Routes"

    Quote Originally Posted by sbradshaw View Post
    Would using this method of only entering a 3-digit number cause an issue with other numbers containing the same 3-digit number? 411 vs. xxx-xxx-4110, for example.
    Hello, the answer to this question is simply put -- no. The call routing matches either a) Only the partial number, in the above example "411". Now keep in mind there are wild cards, however in which case if you *DID* for whatever reason want to match something like that number you mentioned, you could simply do:

    "******4110"

    Essentially * matches [0-9] for any of you guys who may know regex, simply put once again, this is any numeric integer between 0 and 9, matched 1 or more times.


    So a few examples
    "411" matches -> 411
    "*411" matches *411******
    "*411*5" matches *411*5***

    Now that above is the current method, of how we're matching, however this is not 100% set, so I do need some more input from you guys actually.

    Heres somewhat of my thinking:
    CURRENT METHOD:
    714* -> 714*******
    *714 -> *714******
    *714* -> *714******

    NEW METHOD ?:
    714* -> 714*******
    *714 -> *******714
    *714* -> *714******

    Also, I'm perhaps thinking about integrating some other type of wild card symbol such as %, how this would work, would be such as: %714%, would match any number with 714 in it, so it would match the following:

    714 *** ****
    *** 714 ****
    *** *** 714*
    *** *** *714
    and so on.......

    The other thing to consider also, is how we would want to integrate international numbers into this too, any thoughts / suggestions, etc is all appreciated, let me now what you guys feel would work best for you.
    ________
    LESBIAN ASSLICKING
    Last edited by VOIPoBrandon; 03-21-2011 at 07:35 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •