7 methods for creating multi-line strings in javascript _ javascript tips-js tutorial

Source: Internet
Author: User
Tags intl
Multiline strings are used to improve the readability of source code. especially when you process a predefined long string, splitting the string into multiple lines of books helps improve the readability and maintainability of the Code. in some languages, multi-line strings can also be used for code comments. most Dynamic scripting languages support multi-line strings, such as Python, Ruby, and PHP. but what about Javascript? JS does not have a standard multi-line string representation method, but when using a template, to ensure the readability of the template, We can inevitably use multi-line strings, so there are various ideas. Here we take a jade template as an example to briefly summarize and compare it.

I. String Addition

This is the easiest and most commonly used form, as shown below:

The Code is as follows:


Var tmpl = ''+
'!!! 5' +
'Html' +
'Include header' +
'Body' +
'// If IE 6' +
'. Alert. alert-error' +
'Center Sorry, we do not support IE6. Please upgrade your browser '+
'A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download '+
'A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download' +
'Include head' +
'. Iner' +
'. Row-fluid' +
'. Span8' +
'Block main' +
'Include pagerbar' +
'. Span4' +
'Include sidebar' +
'Include footer '+
'Include script'

Advantages:

Easy to understand, simple, and reliable
Flexible enough to add js logic to a single string

Disadvantages:

It is not a real multi-line string. If you want to really multi-line strings, you need to add \ n
A lot of plus signs look like stars, a lot of "and", ugly

Ii. Use Backlash

This is called a line break, which is not a common method. However, once used, it is still very addictive. You only need to add one character.

The Code is as follows:


Var tmpl = '\
!!! 5 \
Html \
Include header \
Body \
// If IE 6 \
. Alert. alert-error \
Center Sorry, we do not support IE6. Please upgrade your browser
A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official Download \
A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome Download \
Include head \
. Container \
. Row-fluid \
. Span8 \
Block main \
Include pagerbar \
. Span4 \
Include sidebar \
Include footer \
Include script'


Advantages:

Simple: Only one more row is required.
Efficient! In most browsers, this method is the fastest,

Disadvantages:

Fatal defect. The \ of each line must not have spaces; otherwise, a direct script error occurs.
It is not a real multi-line string. If you want to really multi-line strings, you need to add \ n
Although most js engines support it, it is not part of ECMAScript.

Iii. String Array join

The Code is as follows:


Var tmpl = [
'!!! 5 ',
'Html ',
'Include header ',
'Body ',
'// If IE 6 ',
'. Alert. alert-error ',
'Center Sorry, we do not support IE6. Please upgrade your browser ',
'A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download ',
'A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download ',
'Include head ',
'. Iner ',
'. Row-fluid ',
'. Span8 ',
'Block main ',
'Include pagerbar ',
'. Span4 ',
'Include sidebar ',
'Include footer ',
'Include script']. join ('\ n ');


Advantages:

True multi-line string
Easy to understand, simple, and reliable
Flexible enough to add js logic to a single string

Disadvantages:

A lot of, numbers and ', ", ugly

5. String. prototype. concat

The Code is as follows:


Var tmpl = String. prototype. concat. call (
'!!! 5 ',
'Html ',
'Include header ',
'Body ',
'// If IE 6 ',
'. Alert. alert-error ',
'Center Sorry, we do not support IE6. Please upgrade your browser ',
'A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download ',
'A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download ',
'Include head ',
'. Iner ',
'. Row-fluid ',
'. Span8 ',
'Block main ',
'Include pagerbar ',
'. Span4 ',
'Include sidebar ',
'Include footer ',
'Include script ');


Advantages:

Not commonly used. In fact, the concat method of a string is far less commonly used than the "+" method.
Easy to understand, simple, and reliable
Flexible enough to add js logic to a single string

Disadvantages:

Not a true multi-line string
A lot of, numbers and ', ", ugly

V. heredoc

This is a very skillful solution, using the function toString Method

The Code is as follows:


Function heredoc (fn ){
Return fn. toString (). split ('\ n'). slice (1,-1). join (' \ n') + '\ N'
}

Var tmpl = heredoc (function (){/*
!!! 5
Html
Include header
Body
// If IE 6
. Alert. alert-error
Center Sorry, we do not support IE6. Please upgrade your browser
A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download
A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download
Include head
. Container
. Row-fluid
. Span8
Block main
Include pagerbar
. Span4
Include sidebar
Include footer
Include script
*/});

Advantages:

No extra characters are required in the template string, which is clean and simple.
In the true sense, there are multiple lines of strings.

Disadvantages:

Javascript logic cannot be added to a single string.
It is easily compressed by the compressed file. yui compressor can use /*! To avoid compression. uglifyjs and gcc can also use option configuration to not delete specific annotations. This is not a big problem.

Vi. coffeescript

It is equivalent to changing a language. In fact, the lack of functions in this language is a great choice to achieve it through coffeescript, a js-based compilation target language.

The Code is as follows:


Var tmpl = """
!!! 5
Html
Include header
Body
// If IE 6
. Alert. alert-error
Center Sorry, we do not support IE6. Please upgrade your browser
A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download
A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download
Include head
. Container
. Row-fluid
. Span8
Block main
Include pagerbar
. Span4
Include sidebar
Include footer
Include script
"""


Advantages:

Easy to understand, simple, and reliable

Disadvantages:

Coffeescript
Coffeescript is used to write the entire file.

VII. ES6

ES6 has a new feature, Template Strings. This is the first time that multiple lines of Strings are implemented at the language level. Enable Experimental JavaScript in chrome canary can use this feature, in addition, typescript also supports this method.

The Code is as follows:


Var tmpl =
'!!! 5
Html
Include header
Body
// If IE 6
. Alert. alert-error
Center Sorry, we do not support IE6. Please upgrade your browser
A (href = "http://windows.microsoft.com/zh-CN/internet-explorer/download-ie") | IE8 official download
A (href = "https://www.google.com/intl/en/chrome/browser/") | Chrome download
Include head
. Container
. Row-fluid
. Span8
Block main
Include pagerbar
. Span4
Include sidebar
Include footer
Include script'


Advantages:

Easy to understand, native support
Real multi-line string

Disadvantages:
Limited JS engine support

VIII. Summary

After reading these writing methods, how can I choose? If you are using coffeescript, feel free to use the multi-line string writing supported by it. If you solve the problem of removing comments from your compressor on the client side, heredoc is recommended; if you cannot solve the problem of the compressors, use the backslash to connect, each line only needs to add one character.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.