{"ScriptPreparationCode":"const testString = \u00221234567890\u0022\r\n\r\nconst regexFullMatch = /^\\d\u002B$/\r\nconst regexNegated = /[^\\d]/","TestCases":[{"Name":"regex full match check","Code":"const value = regexFullMatch.test(testString)","IsDeferred":false},{"Name":"parseInt check","Code":"const value = Number.isNaN(parseInt(testString, 10))","IsDeferred":false},{"Name":"regex negated check","Code":"const value = regexNegated.test(testString)","IsDeferred":false}]}