{"ScriptPreparationCode":"function usingRegex (stringToParse) {\r\n return stringToParse.replace(/([\u0022\u0027])(\\/\\/.*?)([\u0022\u0027])/gim, \u0027$1https:$2$3\u0027)\r\n}\r\nfunction notUsingRegex (stringToParse) {\r\n if (stringToParse.indexOf(\u0027//\u0027) === 0) {\r\n \treturn \u0027https:\u0027 \u002B stringToParse\r\n }\r\n return stringToParse\r\n}","TestCases":[{"Name":"RegEx","Code":"usingRegex(\u0027//google.com\u0027)","IsDeferred":false},{"Name":"Simple","Code":"notUsingRegex(\u0027//google.com\u0027)","IsDeferred":false}]}