About 16,300,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 …

  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, 8 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, 3 months ago Modified 3 years ago Viewed 143k times

  4. 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 …

  5. 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 …

  6. 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 …

  7. 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 …

  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 …

  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. search - Count number of occurrences of a pattern in a file (even …

    May 26, 2010 · 100 When searching for number of occurrences of a string in a file, I generally use: grep pattern file | wc -l However, this only finds one occurrence per line, because of the …