Tagged Questions
A Here-document is a special syntax of writing literal strings in sourcecode, used by different programming languages.
24
votes
5answers
7k views
How to assign a heredoc value to a variable in Bash?
I have this multi-line string (quotes included)
abc'asdf"
$(dont-execute-this)
foo"bar"''
How would I assign it to a variable using a heredoc in Bash?
There is still no solution that preserves ...
20
votes
10answers
14k views
Calling PHP functions within HEREDOC strings
In PHP, the HEREDOC string declarations are really useful for outputting a block of html. You can have it parse in variables just by prefixing them with $, but for more complicated syntax (like ...
14
votes
3answers
4k views
Working with large text snippets in Java source
Are there any good ways to work with blocks of text (Strings) within Java source code? Many other languages have heredoc syntax available to them, but Java does not. This makes it pretty inconvenient ...
13
votes
5answers
2k views
Simple/Direct/Heredoc way of constructing a HTML string in Java
In python I can construct a HTML string without worrying about escaping special characters like < or " by simply enclosing the string in triple quotes like:
html_string = """
<html>
...
12
votes
6answers
1k views
Dirt-simple PHP templates… can this work without `eval`?
Update- Thanks for all the responses. This Q is getting kind of messy, so I started a sequel if anyone's interested.
I was throwing together a quick script for a friend and stumbled across a really ...
9
votes
2answers
3k views
Javascript heredoc
I need something like heredoc in JavaScript. Did you have anything ideas for this? I need cross-browser realization.
I was found this:
heredoc = '\
<div>\
<ul>\
...
8
votes
3answers
2k views
How can I write a here doc to a file in bash script?
How can I write a here document to a file in bash script?
7
votes
5answers
587 views
How do you type a tab in a bash here-document?
The definition of a here-document is here:
http://en.wikipedia.org/wiki/Here_document
How can you type a tab in a here-document? Such as this:
cat > prices.txt << EOF
coffee\t$1.50
...
6
votes
4answers
396 views
Is there a reason to use Heredoc in PHP?
Are there any good reasons to use the Heredoc in PHP? I can't seem to find any advantages to using it.
Also, how do you align code inside of a class when using it?
6
votes
2answers
2k views
Using variables inside a bash heredoc
I'm trying to interpolate variables inside of a bash heredoc:
var=$1
sudo tee "/path/to/outfile" > /dev/null << "EOF"
Some text that contains my $var
EOF
This isn't working as I'd expect ...
6
votes
5answers
301 views
What's the difference between these two Perl snippets?
print <<EOF
stuff
EOF
;
print <<EOF;
stuff
EOF
Why would you use one over the other?
6
votes
4answers
1k views
PHP <<<EOB
I've been developing with PHP for some years now, and recently came across this code:
<?php
echo <<<EOB
<html>
<head>
<title>My title</title>
...
5
votes
1answer
97 views
I don't understand why string.size returns what it does
long_string = <<EOS
It was the best of times,
It was the worst of times.
EOS
that returns 53. Why? The whitespace counts? Even still. how do we get 53?
How about this?
def ...
5
votes
1answer
329 views
Heredoc: what does the commonly used 'EOT' actually mean?
PHP's Heredoc examples always seem to use EOT (and sometimes EOD) as the seperating string, while it is actually possible to use any string here. This works:
$mystring = <<<EOT
Foo
...
5
votes
5answers
239 views
Accessing defined variable inside <<<HTML in php
I'm trying to figure out how to use a defined variable when using <<<HTML in php.
This is an example of what I want to achieve:
<?php
define('TEST','This is a test');
echo ...
5
votes
4answers
1k views
How do I remove leading whitespace chars from Ruby HEREDOC?
I'm having a problem with a Ruby heredoc i'm trying to make. It's returning the leading whitespace from each line even though i'm including the - operator, which is supposed to suppress all leading ...
5
votes
3answers
630 views
Heredoc strings in C#
Is there a heredoc notation for strings in C#, preferably one where I don't have to escape anything (including double quotes, which are a quirk in verbatim strings)?
5
votes
4answers
170 views
Is it possible to object-select a heredoc or “here document” with vim?
One of Vim's great strengths is object-select, offering quick manipulation of content inside words, paragraphs and assorted delimiters.
For example,
vi{
will select everything inside a pair of {} ...
5
votes
5answers
429 views
How can I escape code-like things in a Perl string?
$i=1;
while($i<3) {
print << "EOT";
def px$i = new E(user)
if (!px$i.hasErrors()) {
println "${px$i.name} / ${px$i.empr.to} OK"
}
EOT
$i++;
}
produces the ...
5
votes
8answers
1k views
heredoc for Windows batch?
Is there a way of specifying multiline strings in batch in a way similar to heredoc in unix shells. Something similar to:
cat <<EOF > out.txt
bla
bla
..
EOF
The idea is to create a ...
4
votes
1answer
117 views
What is the purpose or here documents in ruby?
I have read about here documents on the book "The Ruby Programming Language" and didn't understand what is the purpose of here documents and when will you use it on production code. I would be happy ...
4
votes
4answers
296 views
4
votes
4answers
499 views
HEREDOC interfering with code indentation
I like the HEREDOC syntax, e.g. for edge cases of generated HTML that are not worth putting into a template.
The only thing that annoys me about it, though, is that the content, and the closing ...
3
votes
1answer
101 views
Can someone explain this ruby code?
From the rails postgresql_adapter.rb. I get what it's trying to do, I just don't get how it happens. It's really to do with the <<-SQL that I'm lost.
exec_query(<<-SQL, 'SCHEMA', ...
3
votes
1answer
333 views
set variable in heredoc section
I'm a shell script newbie, so I must be doing something stupid, why won't this work:
#!/bin/sh
myFile=$1
while read line
do
ssh $USER@$line <<ENDSSH
ls -d foo* | wc -l
count=`ls -d foo* | wc ...
3
votes
3answers
890 views
Can't find string terminator “str” anywhere before EOF
Why I get this error?
use strict;
use warnings;
my $str = <<str;
88087 23/11/2010
35192 25/07/2010
B3J 5X9 17/08/2011
C8U 5L6 16/08/2011
F4Q 3B4 17/10/2010
D3X 9P4 11/05/2010
O7L ...
3
votes
3answers
525 views
Heredoc not working
<?php
$information = <<<INFO
Name: John Smith
Address: 123 Main St
City: Springville, CA
INFO;
echo $information;
?>
Result:
Parse error: syntax error, unexpected T_SL on ...
3
votes
4answers
297 views
How to output “”“ in the ”here docs" of scala?
In scala, "here docs" is begin and end in 3 "
val str = """Hi,everyone"""
But what if the string contains the """? How to output Hi,"""everyone?
2
votes
1answer
37 views
php heredoc — not echoing '<script type=“text/javascript”>'
I've used heredoc syntax in server-side php to clean up the code -- my understanding of the utility of heredoc is "allows you to send client-side code to the browser and avoid individual echo's for ...
2
votes
2answers
41 views
define and heredoc
How do you use define within a heredoc? For example:
define('PREFIX', '/holiday');
$body = <<<EOD
<img src="PREFIX/images/hello.png" /> // This doesn't work.
EOD;
2
votes
1answer
87 views
if/else with heredoc not behaving as expected
I am using heredoc to build a simple text email, but for some reason I am getting strange results around my if/else conditional:
<?php
$message = <<<EOD
Hi Username
EOD;
echo ...
2
votes
2answers
68 views
accessing class properties that are arrays in HEREDOC
There's two different syntaxes in the example below. One works and the other does not! Actually I would expect it to be the other way round. The second syntax looks quite crappy to me.
<?php
class ...
2
votes
2answers
159 views
Java command line input with heredoc
I have a frustratingly simple problem: I need to write a program that accepts input of the form:
cat << EOF | java myProgram.java
> 1 2 3 4
> 5 6 7 8
> etcetera
> EOF
But my ...
2
votes
4answers
128 views
Have I misunderstood what heredoc should do?
I'm very new to PHP so I know I am missing something obvious here -
I thought the heredoc function is supposed to retain formatting, line breaks, etc.
But whenever I test it, while it parses, there ...
2
votes
3answers
220 views
Special uses of this syntax in PHP? (Triple 'Angle Brackets')
Given the following code:
$myString = <<<script
.
.
.
script;
Thanks to the answers on the original version of this question, I understand <<< to be heredoc syntax, ...
2
votes
1answer
726 views
Perl here-document not working
I've been trying to use Here-documents but it's not working.
What might be wrong? Am I missing something obvious?
This is the entire contents of the file I'm trying to run (there are no spaces, or ...
2
votes
1answer
136 views
Print freeform text in a Perl function?
I have been getting a very odd error when trying to print freeform text in a subroutine in Perl. Below is the code I am calling
print OUTFILE <<"HEADER";
The freeform text would go here
...
2
votes
2answers
255 views
How to bind data in heredoc of scala?
val name = "mike"
val str = """Hi, {name}!"""
println(str)
I want it output the str as Hi, mike!, but failed. How to do this?
2
votes
1answer
189 views
Can I access a variable within a heredoc in Ruby?
If I have a method
def some_method p = {}
string = <<-MY_TERMINATOR
Example text blah blah
lorem ipsum something or another
MY_TERMINATOR
end
how can I access the ...
2
votes
1answer
316 views
PHP - Cannot use Heredoc within a class method?
I'm writing the code for a controller method and I need to use it to send an email. I'm trying to use heredoc syntax to fill in the email body, however, the closing tag doesn't seem to be recognized.
...
2
votes
3answers
807 views
Python subprocess with heredocs
I was playing around with Python's subprocess module, trying a few examples but I can't seem to get heredoc statements to work.
Here is the trivial example I was playing with:
import subprocess
a = ...
2
votes
2answers
307 views
How to inline few java lines inside an Ant script?
How to inline (here-document) few java code lines into a Ant script ?
Please an example ?
1
vote
1answer
31 views
php static class members not working
I am stumped by the following code:
<b><i>First name *</b></i> : <input type="text"
name='<?php Labels::$FIRSTNAMELABEL ?>' /><br />
...
1
vote
2answers
72 views
Escaping symbols in cron
I have the following script (it connects to oracle database, looking for applied arclogs and deletes it):
ARCLOGS=$(/oracle/base11202/11202/bin/sqlplus -s / as sysdba <<EOF
set head off
set ...
1
vote
4answers
53 views
Possible to put a conditional statement inside a here document?
I know we can do things like this:
puts <<START
----Some documents
#{if true
"yesyesyesyesyesyesyesyesyesyes"
else
"nonononononononononononononono"
end}
----Some documents
START
But is it ...
1
vote
1answer
53 views
How to make backticks work in a HERE doc?
I have a script2:
# This is script2 that is called by script1.
CURRENT_TOMCAT_PROCESS=`ps -ef | grep java | grep $TOMCAT_USER | grep -v grep | awk '{print $2}'`
echo "---> ...
1
vote
4answers
79 views
PHP variable declared via heredoc will not parse correctly, when called within PHP-generated JavaScript
The variable $a below does not seem to parse properly when if I attempt to declare it using a heredoc. It however, does work when I define it with the simple = declaration method. I would like to be ...
1
vote
1answer
39 views
Trouble turning long concatenated variable into heredoc
$eventDropdowns ="<form method = \'get\' action = \'changer.php\'>";
$eventDropdowns.="<select name = \'change_event\' class = \'dropdown\' id = \'change_event\'><option value = ...
1
vote
3answers
98 views
Heredoc <<< or <<?
Well I am wondering what is the right way to do the Heredoc syntax?
In my code editor, which is 'e-text editor' doing <<< totally throws off the syntax highlighting.
and doing << ...
1
vote
3answers
247 views
Where must variables in PowerShell here-strings be initialized?
I have a rather complex SQL query I want to use in a here-string in a PowerShell script. Inside the query, I want to replace certain values with PowerShell variables. I'm trying to understand exactly ...