About 15,500,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, 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. 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 …

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

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

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

  8. fedex - Tracking number patterns - Stack Overflow

    Mar 6, 2009 · Is there any place to get patterns for shipping tracking numbers for all shipping companies like UPS,FedEX, DHL, AirBorne, USPS ...

  9. Number Patterns In Java - Stack Overflow

    Jun 18, 2016 · Number Patterns In Java Asked 8 years, 9 months ago Modified 7 years, 2 months ago Viewed 180 times

  10. search - Count number of occurrences of a pattern in a file (even on ...

    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 way grep works. …