{"ScriptPreparationCode":"var targetString = \u0022Lorem ipsum dolor sit amet\u0022\r\n//Credits to lipsum.com for the text","TestCases":[{"Name":"replace regex","Code":"targetString.replace(/ /g, \u0022\u002B\u0022);","IsDeferred":false},{"Name":"split-join","Code":"targetString.split(\u0022 \u0022).join(\u0022\u002B\u0022);","IsDeferred":false},{"Name":"replaceAll regex","Code":"targetString.replaceAll(/ /g, \u0022\u002B\u0022);","IsDeferred":false},{"Name":"replaceAll string","Code":"targetString.replaceAll(\u0022 \u0022, \u0022\u002B\u0022);","IsDeferred":false}]}