Skip to content

Instantly share code, notes, and snippets.

@chsh
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save chsh/114f0996761ce890b784 to your computer and use it in GitHub Desktop.

Select an option

Save chsh/114f0996761ce890b784 to your computer and use it in GitHub Desktop.
Simple phone number validator.
def phone_valid?(value)
# value should have only digits and hyphens.
return false unless value =~ /^0\d[\d\-]+\d$/
# value should have 10 or 11 size digits.
return false unless [10,11].include?(value.gsub(/\-/, '').length)
true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment