{"ScriptPreparationCode":"var strIn = \u00271234-12-34 05:27:56Z\u0027;\r\nvar strOut = \u0027\u0027;\r\nvar regex = /\\d{4}-(\\d{2})-(\\d{2}) (\\d{2})/;\r\n\r\n","TestCases":[{"Name":"slice","Code":"var month = strIn.slice(5, 7);\r\nvar day = strIn.slice(8, 10);\r\nvar hour = strIn.slice(11, 13);","IsDeferred":false},{"Name":"regex","Code":"var [_, month, day, hour] = strIn.match(regex)","IsDeferred":false},{"Name":"brackets","Code":"var month = strIn[5] \u002B strIn[6];\r\nvar day = strIn[8] \u002B strIn[9];\r\nvar hour = strIn[11] \u002B strIn[12];","IsDeferred":false}]}