Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the actual uses of ES6 Raw String Access?

What are the actual uses of String.raw Raw String Access introduced in ECMAScript 6?

// String.raw(callSite, ...substitutions)  function quux (strings, ...values) {     strings[0] === "foo\n"     strings[1] === "bar"     strings.raw[0] === "foo\\n"     strings.raw[1] === "bar"     values[0] === 42 }  quux `foo\n${ 42 }bar`  String.raw `foo\n${ 42 }bar` === "foo\\n42bar" 

I went through the below docs.

http://es6-features.org/#RawStringAccess

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw

http://www.2ality.com/2015/01/es6-strings.html

https://msdn.microsoft.com/en-us/library/dn889830(v=vs.94).aspx

The only the thing that I understand, is that it is used to get the raw string form of template strings and used for debugging the template string.

When this can be used in real time development? They were calling this a tag function. What does that mean?

What concrete use cases am I missing?

like image 726
Venkat.R Avatar asked Jan 13 '16 17:01

Venkat.R


People also ask

What are raw strings used for?

Raw strings are useful when you deal with strings that have many backslashes, for example, regular expressions or directory paths on Windows. Since the backslash ( \ ) escapes the single quote ( ' ) or double quotes ( " ), a raw string cannot end with an odd number of backslashes.

What are backticks used for in JavaScript?

Backticks are an ES6 feature that allows you to create strings in JavaScript. Although backticks are mostly used for HTML or code embedding purposes, they also act similar to single and double quotes. Besides, using backticks makes it easier for string operations.

What is meant by raw string?

A raw string in programming allows all characters in a string literal to remain the same in code and in the material, rather than performing their standard programming functions. Raw strings are denoted with the letter r, or capital R, and might look something like this: R “(hello)”


2 Answers

The best, and very nearly only, use case for String.raw I can think of is if you're trying to use something like Steven Levithan's XRegExp library that accepts text with significant backslashes. Using String.raw lets you write something semantically clear rather than having to think in terms of doubling your backslashes, just like you can in a regular expression literal in JavaScript itself.

For instance, suppose I'm doing maintenance on a site and I find this:

var isSingleUnicodeWord = /^\w+$/; 

...which is meant to check if a string contains only "letters." Two problems: A) There are thousands of "word" characters across the realm of human language that \w doesn't recognize, because its definition is English-centric; and B) It includes _, which many (including the Unicode consortium) would argue is not a "letter."

So if we're using XRegExp on the site, since I know it supports \pL (\p for Unicode categories, and L for "letter"), I might quickly swap this in:

var isSingleUnicodeWord = XRegExp("^\pL+$"); // WRONG 

Then I wonder why it didn't work, facepalm, and go back and escape that backslash, since it's being consumed by the string literal.

Easy enough in that simple regex, but in something complicated, remembering to double all those backslashes is a maintenance pain. (Just ask Java programmers trying to use Pattern.)

Enter String.raw:

let isSingleUnicodeWord = XRegExp(String.raw`^\pL+$`); 

Example:

let isSingleUnicodeWord = XRegExp(String.raw`^\pL+$`); // L: Letter  console.log(isSingleUnicodeWord.test("Русский"));      // true  console.log(isSingleUnicodeWord.test("日本語"));        // true  console.log(isSingleUnicodeWord.test("العربية"));      // true  console.log(isSingleUnicodeWord.test("foo bar"));      // false
<script src="https://cdnjs.cloudflare.com/ajax/libs/xregexp/3.1.1/xregexp-all.min.js"></script>

Now I just kick back and write what I mean. I don't even really have to worry about ${...} constructs used in template literals to do substitution, because the odds of my wanting to apply a quantifier {...} to the end-of-line assertion ($) are...low. So I can happily use substitutions and still not worry about backslashes. Lovely.


Having said that, though, if I were doing it a lot, I'd probably want to write a function and use a tagged template instead of String.raw itself. But it's surprisingly awkward to do correctly:

// My one-time tag function  function xrex(strings, ...values) {    let raw = strings.raw;    let max = Math.max(raw.length, values.length);    let result = "";    for (let i = 0; i < max; ++i) {      if (i < raw.length) {        result += raw[i];      }      if (i < values.length) {        result += values[i];      }    }    console.log("Creating with:", result);    return XRegExp(result);  }    // Using it, with a couple of substitutions to prove to myself they work  let category = "L";                                // L: Letter  let maybeEol = "$";  let isSingleUnicodeWord = xrex`^\p${category}+${maybeEol}`;  console.log(isSingleUnicodeWord.test("Русский"));  // true  console.log(isSingleUnicodeWord.test("日本語"));    // true  console.log(isSingleUnicodeWord.test("العربية"));  // true  console.log(isSingleUnicodeWord.test("foo bar"));  // false
<script src="https://cdnjs.cloudflare.com/ajax/libs/xregexp/3.1.1/xregexp-all.min.js"></script>

Maybe the hassle is worth it if you're using it in lots of places, but for a couple of quick ones, String.raw is the simpler option.

like image 159
T.J. Crowder Avatar answered Oct 06 '22 00:10

T.J. Crowder


Template strings can be useful in many situations which I will explain below. Considering this, the String.raw prevents escapes from being interpreted. This can be useful in any template string in which you want to contain the escape character but do not want to escape it. A simple example could be the following:

var templateWithBackslash = String.raw `someRegExp displayed in template /^\//`

There are a few things inside that are nice to note with template strings.

  1. They can contain unescaped line breaks without problems.
  2. They can contain "${}". Inside these curly braces the javascript is interpreted instead.

(Note: running these will output the result to your console [in browser dev tools])

Example using line breaks:

var myTemplate = `  <div class="myClass">    <pre>      My formatted text      with multiple lines      {        asdf: "and some pretty printed json"      }    </pre>  </div>  `  console.log(myTemplate)

If you wanted to do the above with a normal string in Javascript it would look like the following:

var myTemplate = "\  <div class="myClass">\    <pre>\      My formatted text\      with multiple lines\      {\        asdf: "and some pretty printed json"\      }\    </pre>\  </div>"  console.log(myTemplate)

You will notice the first probably looks much nicer (no need to escape line breaks).

For the second I will use the same template string but also insert the some pretty printed JSON.

var jsonObj = {asdf: "and some pretty printed json", deeper: {someDeep: "Some Deep Var"}}  var myTemplate = `  <div class="myClass">    <pre>      My formatted text      with multiple lines      ${JSON.stringify(jsonObj, null, 2)}    </pre>  </div>  `  console.log(myTemplate)
like image 23
Goblinlord Avatar answered Oct 05 '22 23:10

Goblinlord