Codectionary / Developer documentation / Ruby

Ruby regular expressions

Ruby reference for ruby regular expressions.

Syntax

email = "ada@example.com"
puts email.match?(/\A[^@]+@[^@]+\z/)

Examples

Ruby regular expressions example

A focused example you can adapt while practising.

email = "ada@example.com"
puts email.match?(/\A[^@]+@[^@]+\z/)

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Expressive scripting and applications
File extension
.rb
Runs in
Ruby interpreter
Usually used with
Ruby standard library and gems

Specifications & further reading

Related Ruby documentation