Evgenii Legotckoi
June 21, 2016, 11:52 a.m.

User Guide #05 - Ruby - Regular expressions

Let's put together a more interesting program. This time we test whether a string fits a description, encoded into a concise pattern .

There are some characters and character combinations that have special meaning in these patterns, including:

[] - range specificication (e.g., [a-z] means a letter in the range

  1. a
to z)
\w - letter or digit; same as [0-9A-Za-z]
\W - neither letter or digit
\s - space character; same as [ \t\n\r\f]
\S - non-space character
\d - digit character; same as [0-9]
\D - non-digit character
\b - backspace (0x08) (only if in a range specification)
\b - word boundary (if not in a range specification)
\B - non-word boundary
* - zero or more repetitions of the preceding
+ - one or more repetitions of the preceding
{m,m} - at least m and at most n repetitions of the preceding
? - at most one repetition of the preceding; same as
  1. {0,1}

| - either preceding or next expression may match
() - grouping


The common term for patterns that use this strange vocabulary is regular expressions . In ruby, as in Perl, they are generally surrounded by forward slashes rather than double quotes. If you have never worked with regular expressions before, they probably look anything but regular , but you would be wise to spend some time getting familiar with them. They have an efficient expressive power that will save you headaches (and many lines of code) whenever you need to do pattern matching, searching, or other manipulations on text strings.

For example, suppose we want to test whether a string fits this description: "Starts with lower case f, which is immediately followed by exactly one upper case letter, and optionally more junk after that, as long as there are no more lower case characters." If you're an experienced C programmer, you've probably already written about a dozen lines of code in your head, right? Admit it; you can hardly help yourself. But in ruby you need only request that your string be tested against the regular expression /^f A-Z $/.*

How about "Contains a hexadecimal number enclosed in angle brackets"? No problem.

  1. ruby> def chab(s) # "contains hex in angle brackets"
  2. | (s =~ /<0(x|X)(\d|[a-f]|[A-F])+>/) != nil
  3. | end
  4. nil
  5. ruby> chab "Not this one."
  6. false
  7. ruby> chab "Maybe this? {0x35}" # wrong kind of brackets
  8. false
  9. ruby> chab "Or this? <0x38z7e>" # bogus hex digit
  10. false
  11. ruby> chab "Okay, this: <0xfc0004>."
  12. true

Though regular expressions can be puzzling at first glance, you will quickly gain satisfaction in being able to express yourself so economically.

Here is a little program to help you experiment with regular expressions. Store it as regx.rb and run it by typing "ruby regx.rb" at the command line.

  1. # Requires an ANSI terminal!
  2.  
  3. st = "\033[7m"
  4. en = "\033[m"
  5.  
  6. while TRUE
  7. print "str> "
  8. STDOUT.flush
  9. str = gets
  10. break if not str
  11. str.chop!
  12. print "pat> "
  13. STDOUT.flush
  14. re = gets
  15. break if not re
  16. re.chop!
  17. str.gsub! re, "#{st}\\&#{en}"
  18. print str, "\n"
  19. end
  20. print "\n"

The program requires input twice, once for a string and once for a regular expression. The string is tested against the regular expression, then displayed with all the matching parts highlighted in reverse video. Don't mind details now; an analysis of this code will come soon.

  1. str> foobar
  2. pat> ^fo+
  3. foobar
  4. ~~~

Matches part was marked the following line "~~~".

Let's try several more inputs.

  1. str> abc012dbcd555
  2. pat> \d
  3. abc012dbcd555
  4. ~~~ ~~~

If that surprised you, refer to the table at the top of this page: \d has no relationship to the character

  1. d
, but rather matches a single digit.

What if there is more than one way to correctly match the pattern?

  1. str> foozboozer
  2. pat> f.*z
  3. foozboozer
  4. ~~~~~~~~

foozbooz is matched instead of just fooz ,since a regular expression maches the longest possible substring.

Here is a pattern to isolate a colon-delimited time field.

  1. str> Wed Feb 7 08:58:04 JST 1996
  2. pat> [0-9]+:[0-9]+(:[0-9]+)?
  3. Wed Feb 7 08:58:04 JST 1996
  4. ~~~~~~~~

"=~" is a matching operator with respect to regular expressions; it returns the position in a string where a match was found, or nil if the pattern did not match.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup