![]()
|
|
Regular expressions (regexp) in Ruby provide powerful
pattern matching and text manipulation.
In Ruby, regexp is implemented using the |
|
Create a Regular ExpressionRuby provides several ways to create regular expressions: |
|
|
|
|
|
|
|
Check If a String Matches a PatternThe most common use of regexp is to check if a string
matches a specific pattern. |
|
The |
|
Using |
|
Using |
|
Capture Matching Data |
|
It’s also useful to capture the data that’s
matching your pattern. For example, in a text blurb
you might want to extract just the date. |
|
Naming the Captures |
|
With the |
|
Capture All Matches with Scan |
|
Let’s say you have to validate all the dates in some
lengthy text that the user filled in a text form.
With just the date’s regex, you could get them all
using |
|
Without a block |
|
Regex OptionsOptions (also called modifiers) change how the pattern
matching behaves. There are 3 of them: |
|
|
|
|
|
|
|
Regex Metacharacters |
|
|
|
|
|
|
|
|
|
|
|
matches words with exactly 4 chars: |
|
matches words with at least 4 chars: |
|
matches words with at most 3 chars: |
|
matches only words 3 to 5 chars in length: |
|
|
|
You can specify a range of chars with |
|
|
|
Use |
|
Use |
|
Use |
|
Use |
|
Use |
|
Use |
|
For all the above, instead of just matching a single preceding char, you can also match a group of preceding chars: |
|
Matching Unicode Characters |
|
|
|
Common Regex Usecases |
|
|
|
|
|
|
|
|
|
Official Docs |
|
Useful Links
|
|
Regex Quotes
|
|
Be rightly scared of regex but use them with care. Read this. |
Next topic: Nil .