{"ScriptPreparationCode":"var testString = \u0027aa bb cc dd ee ff gg hh ii jj kk ll mm nn oo pp qq rr ss tt uu vv ww xx yy zz\u0027;\r\nvar testArray = testString.split(\u0022 \u0022);\r\n\r\nfunction replaceInString() {\r\n testString.replace(/aa/, \u002211\u0022);\r\n testString.replace(/bb/, \u002222\u0022);\r\n testString.replace(/mm/, \u002233\u0022);\r\n testString.replace(/nn/, \u002244\u0022);\r\n testString.replace(/yy/, \u002255\u0022);\r\n testString.replace(/zz/, \u002266\u0022);\r\n}\r\n\r\nfunction updateInArrayAndJoin() {\r\n testArray[0] = \u002211\u0022;\r\n testArray[1] = \u002222\u0022;\r\n testArray[12] = \u002233\u0022;\r\n testArray[13] = \u002244\u0022;\r\n testArray[24] = \u002255\u0022;\r\n testArray[25] = \u002266\u0022;\r\n testArray.join(\u0022 \u0022)\r\n}\r\n","TestCases":[{"Name":"replaceInString","Code":"replaceInString()","IsDeferred":false},{"Name":"updateInArrayAndJoin","Code":"updateInArrayAndJoin()","IsDeferred":false}]}