About 23,400,000 results
Open links in new tab
  1. Regular expression to match standard 10 digit phone number

    Here is a regex that will match any phone number for every country in the world regardless of the number of digits. It matches formatted and unformatted national and international phone numbers.

  2. Number Patterns using loops in Java - Stack Overflow

    Mar 22, 2014 · Number Patterns using loops in Java Asked 11 years, 9 months ago Modified 7 years, 7 months ago Viewed 23k times

  3. html input pattern for phone number - Stack Overflow

    Oct 2, 2015 · html input pattern for phone number Asked 10 years, 2 months ago Modified 3 years ago Viewed 143k times

  4. HTML5 phone number validation with pattern - Stack Overflow

    I'm using HTML5 form validation to validate phone numbers from India. Phone numbers from India are 10 digits long, and start with 7, 8, or 9. For example: 7878787878 9898989898 8678678878 These p...

  5. Regex credit card number tests - Stack Overflow

    But if your code logic depends on it, then don't use regex, and don't use 3rd party plugin/library! Regex detecting card numbers is quick & easy. But in the long run, your project will run into many serious & …

  6. javascript - html pattern to only accept numbers - Stack Overflow

    Dec 12, 2017 · pattern = "[0-9]" But it is still possible to type other characters than digits. If I change the type attribute to number, then only digits are accepted in the input field but the maxlength attribute …

  7. python - Number pattern using nested loop - Stack Overflow

    Apr 29, 2020 · Here is my code which prints a particular number pattern. I want my number pattern to be in perfect triangular arrangement like: a = int (input ('Enter number: ')) base = a while base > 0: fo...

  8. How to use a pattern on an input [type="number"]? - Stack Overflow

    Oct 29, 2015 · Citing MDN on the pattern property (highlighting added): pattern A regular expression that the control's value is checked against. The pattern must match the entire value, not just some …

  9. How to create a pattern of numbers in excel using formulae

    Jun 20, 2020 · I have been trying to get something like below in excel strictly by using formulae. Can someone let me know if this is possible in anyway?

  10. How to use pattern for phone number in an html input?

    Dec 17, 2022 · Because you're defining a pattern for this tag you shouldn't use type=number. ^09[0-9]{9}$ means from the beginning to the end of the input it should start with 09 and after that, it should …