Answers for "regex match for digits only"

0

regex pater for only 4 or 6 digits

^([0-9]{4}|[0-9]{6})$
Posted by: Guest on May-25-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

Browse Popular Code Answers by Language