Skip to content

Instantly share code, notes, and snippets.

@Alex1990
Last active June 1, 2016 18:59
Show Gist options
  • Select an option

  • Save Alex1990/610e4440e0f1f8a7bbc2 to your computer and use it in GitHub Desktop.

Select an option

Save Alex1990/610e4440e0f1f8a7bbc2 to your computer and use it in GitHub Desktop.
Valid number primitive regular expression.
/**
* Valid number primitive regular expression. The keyword "Infinity" is invalid.
*/
var rNumber = /^[+-]?(?:\d+\.?\d*|\.\d+)(?:[eE][+-]?\d+)?$/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment