From: matz@... (Yukihiro Matsumoto) Date: 2002-11-26T12:39:53+09:00 Subject: Re: Combining variables and Regex's Hi, In message "Re: Combining variables and Regex's" on 02/11/26, Eric Schwartz writes: |> In general, #{} evaluates a Ruby expression inside string literals. | |but // is a regex delimiter, not a string, right? Is this just a case |where Ruby is like Perl, and regexes are double-quotish by default? In general, #{} evaluates a Ruby expression inside "double quotish string-like" literals, such as double quoted strings (""), backquoted command input (``), and regexps (//). matz.