encode_re(*chunks)
Builds a regular expression in @encoding. All chunks will be transcoded to that encoding.
# File lib/csv.rb, line 2287 def encode_re(*chunks) Regexp.new(encode_str(*chunks)) end