-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Ruby: Переменные в регулярных выражениях. | ||
|
||
Бывает что нужно вставить одно регулярное выражение в другое. | ||
Это можно сделать так же как со строкой: | ||
|
||
> REGEXP1 = /[A-Za-z0-9\_][A-Za-z0-9\-\_\.]+/ | ||
> /^#{REGEXP1}$/ | ||
=> /^(?-mix:[A-Za-z0-9\_][A-Za-z0-9\-\_\.]+)$/ | ||
|
||
Но при такой вставке могут быть проблемы при дальнейшем преобразовании, | ||
например в строку. Сравните: | ||
|
||
> /^#{REGEXP1}$/.to_s | ||
=> "(?-mix:^(?-mix:[A-Za-z0-9\\_][A-Za-z0-9\\-\\_\\.]+)$)" | ||
|
||
и | ||
|
||
> /^[A-Za-z0-9\_][A-Za-z0-9\-\_\.]+$/.to_s | ||
=> "(?-mix:^[A-Za-z0-9\\_][A-Za-z0-9\\-\\_\\.]+$)" | ||
|
||
Как видно, в результате выражения различаются. Для того чтоб такого | ||
не присходило можно воспользоваться методом `#source`: | ||
|
||
> /^#{REGEXP1.source}$/.to_s | ||
=> "(?-mix:^[A-Za-z0-9\\_][A-Za-z0-9\\-\\_\\.]+$)" | ||
|
||
В этом случае результат получается аналогичный, как если бы мы не использовали | ||
переменную. |