Heredocs and white space

Is there some reason heredocs fail if there is white space after the closing string? Until I realized what was happening this caused me a good bit of trouble. Invisible characters shouldn't cause stuff to fail.

Example:
s = <<-HEREDOC
bla bla bla
HEREDOC

This fails with:

heredoc.rb:3: can't find string "HEREDOC" anywhere before EOF
heredoc.rb:1: parse error, unexpected $, expecting tSTRING_CONTENT or tSTRING_DB
EG or tSTRING_DVAR or tSTRING_END

Delete the spaces at the end of the 3rd line and it works.

I looked through the relevant PickAxe sections and didn't find anything.

Jack

Hi --

Is there some reason heredocs fail if there is white space after the closing string? Until I realized what was happening this caused me a good bit of trouble. Invisible characters shouldn't cause stuff to fail.

Example:
s = <<-HEREDOC
bla bla bla
HEREDOC This fails with:

heredoc.rb:3: can't find string "HEREDOC" anywhere before EOF
heredoc.rb:1: parse error, unexpected $, expecting tSTRING_CONTENT or tSTRING_DB
EG or tSTRING_DVAR or tSTRING_END

Delete the spaces at the end of the 3rd line and it works.

I looked through the relevant PickAxe sections and didn't find anything.

The thing is, the mechanism depends on an exact match. Here's an
unlikely but possible example of why it might matter. Line 10 is
"EOM"; line 12 is "EOM ".

irb(main):008:0> a,b = <<EOM, <<"EOM "
irb(main):009:0" abc
irb(main):010:0" EOM
irb(main):011:0" def
irb(main):012:0" EOM => ["abc\n", "def\n"]

David

···

On Sat, 29 Jul 2006, Jack Christensen wrote:

--
http://www.rubypowerandlight.com => Ruby/Rails training & consultancy
   ----> SEE SPECIAL DEAL FOR RUBY/RAILS USERS GROUPS! <-----
http://dablog.rubypal.com => D[avid ]A[. ]B[lack's][ Web]log
Ruby for Rails => book, Ruby for Rails
http://www.rubycentral.org => Ruby Central, Inc.

Jack Christensen wrote:

Example:
s = <<-HEREDOC
bla bla bla
HEREDOC This fails with:

heredoc.rb:3: can't find string "HEREDOC" anywhere before EOF
heredoc.rb:1: parse error, unexpected $, expecting tSTRING_CONTENT or tSTRING_DB
EG or tSTRING_DVAR or tSTRING_END

Delete the spaces at the end of the 3rd line and it works.

It works then because "HEREDOC" is equal to "HEREDOC", when the space at the end is present it's "HEREDOC ". I just tried it at the command line using bash and when there was a space at the end it did not blow up, it merely included the "HEREDOC " as the last line. Removing the space caused it to work correctly. I did not try it under perl or php.

···

--

Music: Acid Redux | Listen and Stream Free Music, Albums, New Releases, Photos, Videos

Links: http://del.icio.us/furlan

Home: http://thispaceavailable.uxb.net/index.html

We are here to laugh at the odds and live our lives so well that Death will tremble to take us.
-- Charles Bukowski

Hi --

···

On Sat, 29 Jul 2006, dblack@wobblini.net wrote:

Hi --

On Sat, 29 Jul 2006, Jack Christensen wrote:

Is there some reason heredocs fail if there is white space after the closing string? Until I realized what was happening this caused me a good bit of trouble. Invisible characters shouldn't cause stuff to fail.

Example:
s = <<-HEREDOC
bla bla bla
HEREDOC This fails with:

heredoc.rb:3: can't find string "HEREDOC" anywhere before EOF
heredoc.rb:1: parse error, unexpected $, expecting tSTRING_CONTENT or tSTRING_DB
EG or tSTRING_DVAR or tSTRING_END

Delete the spaces at the end of the 3rd line and it works.

I looked through the relevant PickAxe sections and didn't find anything.

The thing is, the mechanism depends on an exact match. Here's an
unlikely but possible example of why it might matter. Line 10 is
"EOM"; line 12 is "EOM ".

irb(main):008:0> a,b = <<EOM, <<"EOM "
irb(main):009:0" abc
irb(main):010:0" EOM
irb(main):011:0" def
irb(main):012:0" EOM => ["abc\n", "def\n"]

Actually I don't think I answered your question. Looking at your
example again, it does look odd. "HEREDOCabc" would be ignored,
whereas "HEREDOC " causes a failure. I'm not sure why.

David

--
http://www.rubypowerandlight.com => Ruby/Rails training & consultancy
   ----> SEE SPECIAL DEAL FOR RUBY/RAILS USERS GROUPS! <-----
http://dablog.rubypal.com => D[avid ]A[. ]B[lack's][ Web]log
Ruby for Rails => book, Ruby for Rails
http://www.rubycentral.org => Ruby Central, Inc.

Seems to be specific to the "<<-" notation.

irb(main):001:0> s = <<HEREDOC
irb(main):002:0" bla bla bla
irb(main):003:0" HEREDOC
irb(main):004:0" HEREDOC
=> "bla bla bla\nHEREDOC \n"

with a space at the end of line 3 works as expected.

···

On 7/28/06, dblack@wobblini.net <dblack@wobblini.net> wrote:

Actually I don't think I answered your question. Looking at your
example again, it does look odd. "HEREDOCabc" would be ignored,
whereas "HEREDOC " causes a failure. I'm not sure why.

--
Regards,
John Wilger

-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don't know," Alice answered.
"Then," said the cat, "it doesn't matter."
- Lewis Carrol, Alice in Wonderland