Jump to content

"here document"


groover

Recommended Posts

  • 3 weeks later...
[quote]
Please forgive me replying to myself but I do need help on this piece.
[/quote]
Bumping your topic is fine as long as you wait a number of hours for a reply. I'd recommend once a day. Check the [a href=\"http://www.phpfreaks.com/forums/index.php?act=boardrules\" target=\"_blank\"]Board's Guidelines[/a] for more info.

As far as your question is concerned. I'm also not aware of any syntax in Javascript that allows you to accomplish what can be done using the here doc syntax in PHP.

However, you can do something similar to the following. Note that new lines are escaped with a "\". You'll still have to escape quotes etc as well.

[code]
var avariable = "words";
var aString = "ehwkjhewkj ejhwjkehwkje jwhejwhew <br />\
ejhwjkewh"+avariable+" <br />\
wkejwkejlw  dskjsdhksdhksh<br />\
kdjsldjslkdjs<br /> \
dkljslkdslkdjs<br /> \
dsjldjlksjd";

document.write(aString);
[/code]
Also,In case you're not aware of it. You can use += to add to a string.
[code]
var aString = 'one ';
aString += 'two';
document.write(aString);
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.