Answers for "match only numbers regex 10 digits"

3

regex 10 numbers only

@"^d{10}$"
Posted by: Guest on May-10-2021
0

regex only digits

console.log(`12331: ${/^d+$/.test('12331')}`) // true 
console.log(`abc: ${/^d+$/.test('abc')}`) // false
Posted by: Guest on August-03-2021

Code answers related to "match only numbers regex 10 digits"

Browse Popular Code Answers by Language