I am facing a problem while reading Json. If you see the below line.
I am able to successfully read the JSON content from a file into this variable TempFileContent , however when I am going to the 2nd line to parse below mentioned json it gives error Invalid character JSON String
Code: Select all
ReadFile>%TempFolder%,TempFileContent
JSONParse>TempFileContent,$.isRunning,IsProcessRunning
Code: Select all
{
"errorCode": "0",
"isRunning": "False",
"exeFileChecked": "C:\Program Files (x86)program\Program.exe"
}
Thanks