Languages
[Edit]
EN

JavaScript - convert string variable to json text

7 points
Created by:
Dragontry
731

In this article, we would like to show you how to convert string variables to JSON text in JavaScript.

1. JSON.stringify example

// ONLINE-RUNNER:browser;

var text = 'This is example text...';
var json = JSON.stringify(text);

console.log(json);

2. Custom conversion method example

// ONLINE-RUNNER:browser;

var expressions = [ 
    // operations order is important
    { rule: /\\/g, result: '\\\\' },
  	{ rule: /"/g,  result: '\\"' }
];

function serializeString(text) {
  	if(text) {
        for(var i = 0; i < expressions.length; ++i) {
            var expression = expressions[i];

            text = text.replace(expression.rule, expression.result);
        }

        return '"' + text + '"';
    }
  
  	return null;
}

// Example:

var text = 'Example SQL query: \"SELECT * FROM `users`;"';
var json = serializeString(text);

console.log(json);

See also

  1. JavaScript - serialize object to json

Alternative titles

  1. JavaScript - how to convert string variable to json text?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - JSON

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join