In PHP, the following would allow me to create a string without having to escape quotes..
$string = <<<EOD
',. whatever <"",'
EOD;
echo $string;
Is there anything similar to it in Ruby/Rails?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ruby heredocs are pretty much the same, with minor changes, and they come in 2 flavours:
1) End-of-heredoc must be at the start a line:
2) End-of-heredoc may be preceeded by whitespace: