Using Regular Expressions to Validate an IP Address in Ruby
Did you know that the Ruby standard library includes regular expressions for validating both IPv4 and IPv6 addresses?
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
Did you know that the Ruby standard library includes regular expressions for validating both IPv4 and IPv6 addresses?
Comments
The RDF gem has it’s own regular expressions for validating IRIs: https://github.com/ruby-rdf/rdf/blob/master/lib/rdf/model/uri.rb. You can also use RDF::URI#valid?
Post a comment