Skip to content
Advertisement

Validate page numbers/ranges for printing

I am writing a regular expression for matching a particular pattern which is as follows.

We all are familiar with the pattern that we give while printing selective pages via a word document. i.e.

  • We can use comma and hyphen
  • no other special characters allowed
  • should start and end with a number
  • Comma and hyphen not allowed together, etc

Valid values:

JavaScript

Invalid values:

JavaScript

I have been using the pattern (([0-9]+)|(\d.*[-,]\d.*)+) but it does not work for all permutation combination.

Any help would be greatly appreciated!

Advertisement

Answer

You may use this regex in Java:

JavaScript

RegEx Demo

RegEx Details:

  • ^: Start
  • d+(?:-d+)?: Match 1+ digits optionally followed by hyphen and 1+ digits
  • (?:: Start non-capture group
    • ,: Match a comma
    • h*: Match 0 or more whitespaces
    • d+(?:-d+)?: Match 1+ digits optionally followed by hyphen and 1+ digits
  • )*: End non-capture group. * repeats this group 0 or more times
  • $: End
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement