From: shyouhei@... Date: 2017-11-20T10:41:31+00:00 Subject: [ruby-core:83838] [Ruby trunk Feature#12700] regexg heredoc support Issue #12700 has been updated by shyouhei (Shyouhei Urabe). I had a chance to write a regexp constant consists of 300+ lines. I have to admit that I did wish I could write that using a heredoc. So I changed my mind. Let me +1. ---------------------------------------- Feature #12700: regexg heredoc support https://bugs.ruby-lang.org/issues/12700#change-67870 * Author: gam3 (Allen Morris) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- There is support for ', ", and ` heredocs, but there is no support for /. Example code with new feature: ~~~ ruby first = 'first' orig = /#{first} match\s # match this # match this /x right = <