Hi all, Can someone please help me in formulating a regular expression. I have an expression like this: if(uri=~"^sip:1[0-9]*@) This matches numbers like 15552221212, but also matches number like 15552221212#.
when i make it as: if(uri=~"^sip:1[0-9]@*) Again this matches any special characters after the number.
I just wanted a regular expression that will match only numbers and no alphabets or special characters. Can someone please help me to formulate a regular expression for this.
Thanks in advance.
w/regards, Jayesh
__________________________________________________________ Yahoo! India Answers: Share what you know. Learn something new http://in.answers.yahoo.com/
On Wed, Nov 29, 2006 at 12:58:44PM +0530, Jayesh Nambiar wrote:
Hi all, Can someone please help me in formulating a regular expression. I have an expression like this: if(uri=~"^sip:1[0-9]*@) This matches numbers like 15552221212, but also matches number like 15552221212#.
when i make it as: if(uri=~"^sip:1[0-9]@*)
not really, in this regexp your number can have only 2 digits and first one should ne "1".
Again this matches any special characters after the number.
I just wanted a regular expression that will match only numbers and no alphabets or special characters. Can someone please help me to formulate a regular expression for this.
if(uri=~"^sip:1[0-9]+@*)
Thanks in advance.
On 11/29/06, Jayesh Nambiar voip_freak@yahoo.co.in wrote:
Hi all, Can someone please help me in formulating a regular expression. I have an expression like this: if(uri=~"^sip:1[0-9]*@) This matches numbers like 15552221212, but also matches number like 15552221212#.
when i make it as: if(uri=~"^sip:1[0-9]@*)
Use this if (uri=~"^sip:1{8}[0-9]@" )
Again this matches any special characters after the number.
I just wanted a regular expression that will match only numbers and no alphabets or special characters. Can someone please help me to formulate a regular expression for this.
Thanks in advance.
w/regards, Jayesh
Find out what India is talking about on - Yahoo! Answers Indiahttp://us.rd.yahoo.com/mail/in/yanswers/*http://in.answers.yahoo.com/ Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOWhttp://us.rd.yahoo.com/mail/in/messengertagline/*http://in.messenger.yahoo.com
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Opppsss....
I think that You make a little typo....
Wouldn't the correct be "^sip:1[0-9]{8}@" to match all numbers with 9 digits initiated by an '1' and followed by any combination of digits (from '0' to '9')?
Edson
_____
From: users-bounces@openser.org [mailto:users-bounces@openser.org] On Behalf Of raviprakash sunkara Sent: quarta-feira, 29 de novembro de 2006 11:35 To: Jayesh Nambiar Cc: Users@openser.org Subject: Re: [Users] regular expression
On 11/29/06, Jayesh Nambiar <voip_freak@yahoo.co.in > wrote:
Hi all, Can someone please help me in formulating a regular expression. I have an expression like this: if(uri=~"^sip:1[0-9]*@) This matches numbers like 15552221212, but also matches number like 15552221212#.
when i make it as: if(uri=~"^sip:1[0-9]@*)
Use this if (uri=~"^sip:1{8}[0-9]@" )
Again this matches any special characters after the number.
I just wanted a regular expression that will match only numbers and no alphabets or special characters. Can someone please help me to formulate a regular expression for this.
Thanks in advance.
w/regards, Jayesh
_____
Find out what India is talking about on - Yahoo! Answers India http://us.rd.yahoo.com/mail/in/yanswers/*http:/in.answers.yahoo.com/ Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW http://us.rd.yahoo.com/mail/in/messengertagline/*http:/in.messenger.yahoo.c om
_______________________________________________ Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users