“JavaScript Escape Quotes” Kod odpowiedzi

Metoda cytatu ucieczki JavaScript

stringToEscape.replace(/"/g, '\\\"')
feddynventor

JavaScript Escape Single Quote

var string = 'this isn\'t a double quoted string';
var string = "this isn\"t a single quoted string";
//           ^         ^ same types, hence we need to escape it with a backslash
Batman

JavaScript Escape Quotes

let text = 'I\'m John Smith';
//I'm John Smith
let text2 = "I\"m Smith John";
//I"m Smith John
let text3 = `Es'cape "all" quotes`
//Es'cape "all" quotes
Odd Oystercatcher

Odpowiedzi podobne do “JavaScript Escape Quotes”

Pytania podobne do “JavaScript Escape Quotes”

Więcej pokrewnych odpowiedzi na “JavaScript Escape Quotes” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu