Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Last active January 3, 2018 07:18
Show Gist options
  • Select an option

  • Save wiyoe/d543822c5ca18abea0f2ee592ce073e5 to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/d543822c5ca18abea0f2ee592ce073e5 to your computer and use it in GitHub Desktop.
Javascript Greater than Zero Regex
var reg = new RegExp("^[1-9][0-9]*$");
reg.test("5"); // true
reg.test("15"); // true
reg.test(15); // true
reg.test("0"); // false
reg.test("-1"); // false
reg.test("5abc"); // false
reg.test("abc"); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment