vote up 1 vote down star

If I create a Here document:

myheredoc = <<HTMLOUTPUT
<div>This is the div</div>
HTMLOUTPUT

Can I use 'myheredoc' to manipulate this Here document like a regular string?

flag

3 Answers

vote up 5 vote down check

Sure can. The syntax is there to make it easier to read, you are still just creating a string.

>> myheredoc = <<HTMLOUTPUT
<div>This is the div</div>
HTMLOUTPUT
=> "<div>This is the div</div>\n"
>> myheredoc << "<p>some paragraph</p>"
=> "<div>This is the div</div>\n<p>some paragraph</p>"
link|flag
vote up 3 vote down

heredoc is just a syntax for generating a string. Therefore you can use all standard string methods. eg:

replaceddoc = myheredoc.gsub(/div/, 'replaced div')
link|flag
vote up 0 vote down

There are a number of ways of declaring strings:

  • Unescaped: 'foo' or %q[foo] or here-doc style <<MARKER
  • Escaped: "foo" or %Q[foo] or here-doc style <<"MARKER"

In all cases the strings are editable, not frozen, so yes, they can be modified after the fact.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.