<div dir="ltr"><div><div>Hi all,<br><br>I am trying to use regex in an dial plan to match -<br><br></div><b>10-DigitNumber*6-DigitNumber*X*<br><br></b></div><b>where X can be = 1 or 3 or 12<br></b><div><b></b><div><br></div>
<div>i.e. 1234567890*123456*1*<br>1234567890*123456*3*<br>1234567890*123456*12*<br></div><div><br>I formed following to match first two-<br>^\d{10}[*]\d{6}[*][13][*]$<br><br>And this to match third one<br>^\d{10}[*]\d{6}[*][1][2][*]$<br>
<br></div><div>But i am unable to make single regex that would pass all three using OR or anything..<br><br></div><div>I want to use this regex in play_n_get_digits.<br><br></div><div>Please Help<br></div><div>-Vishal<br>
</div></div></div>