Hi all,
i want to extract two things from my textfile which is in json format using Deserialize json.
something like this:
{
“number of users” : “7”
“filepath”:“com.xlsx”
}
Error message : Deserialize JSON: After parsing a value an unexpected character was encountered: ". Path ‘numberofusers’, line 3, position 2.
then when i am using Deserialize json to extract it then i m getting this error.
but if i keep the “numberofusers” in first position then it works fine and i m able to extract values of keys
when like this
{
“number of users” : “7”
“filepath”:“com.xlsx”
}
attahing the xaml file
please let me know if i m doing something wrong2. Load User.xaml (5.0 KB)