Hi i wants to create the Regular expression for Mobile number
The data validation should require 10 numbers. The data validation should require the first two numbers to be 04 or 09.
can any one help me on this , this is not working for me /^09\d{8}$/
this is the plunker wr my regex ming as string
hi my regular expression already ming with quots how can i remove that var regex = "/^0(9|4)d{8}$/"
like this :(
Hi i wants to create the Regular expression for Mobile number
The data validation should require 10 numbers. The data validation should require the first two numbers to be 04 or 09.
can any one help me on this , this is not working for me /^09\d{8}$/
this is the plunker wr my regex ming as string https://plnkr.co/edit/Yjch7G7npkHmtKYDF5Yc?p=preview
hi my regular expression already ming with quots how can i remove that var regex = "/^0(9|4)d{8}$/"
like this :(
-
If you have no control over the var type of the pattern you receive, but you are sure it is always passed like that, you may use
var ining="/^0[94]\\d{8}$/g";
and thenvar regex = new RegExp(ining.replace(/^\/(.*)\/g$/, "$1"));
. See this plunkr. – Wiktor Stribiżew Commented Aug 16, 2017 at 7:33 - Did anything work for you? – Wiktor Stribiżew Commented Aug 18, 2017 at 7:29
- hi yeah :) this one 0(9|4)\\d{8} – Gayathri Mohan Commented Aug 21, 2017 at 6:47
- Then please consider accepting the answer that worked for you. – Wiktor Stribiżew Commented Aug 21, 2017 at 6:55
- nothing here .. – Gayathri Mohan Commented Aug 21, 2017 at 7:33
4 Answers
Reset to default 8This regex is working for me:
/^0(9|4)\d{8}$/
Explained:
^ - means start of line
0 - leading zero is mandatory
(9|4) - this is saying that the zero has to be followed by either a 9 or a 4
\d{8} - next, there have to be 8 digits
$ - means end of line
This regex is fairly simple and it works:
/(09|04)\d{8}/g
Explained:
(09|04)
says match the group (09|04) (a group is essentially a sequence to match), where the sequence to be matched is 09 OR (the|
symbol) 04.- Next,
\d{8}
says match exactly 8 digits following the(09|04)
group. - Finally,
g
sets the global flag (allowing for more than one match).
I hope this helped!
I hope this helps you.
var regex = /^0(9|4)\d{8}$/
alert(regex.test('0412345678')); //true
alert(regex.test('0912345678')); //true
alert(regex.test('0512345678')); //false
var regex = new RegExp(/^0(9|4)\d{8}$/);
alert(regex.test('0412345678')); //true
alert(regex.test('0912345678')); //true
alert(regex.test('0512345678')); //false
In asp code Entity you can use following code:
RegularExpression(@"^0(9|4)[0-9\d]{8}$", ErrorMessage = "Your message")]