ContributionsMost RecentMost LikesSolutionsHow can increase the text size of logs Hai, I've a 1920*1080 screen, how can i increase the size of my logs.. Sorry i know i've tagged to the right location.. Update the previously available balance only when there is a change in available balnce Hai, can someone help me with this problem.. I've availbalance = 123 and prevavailbalance = 121(this should only update when there is a change in availbalance, in this case 121 was previously available balnce) - both are coming from json response now my question is i'm writing a script to check whether the prevavailbalance is correct or not? i'm stuck here how to set this thing up. SolvedRe: how can read the account number in json response and store it in datasource/properties? But you what i'm getting only one record with the given account number there might be some other transactions with the same account number .. how can i get all the string that has this account number? Re: how can read the account number in json response and store it in datasource/properties? Got the solution, I used contains instead of startsWith.. 🙂 Re: how can read the account number in json response and store it in datasource/properties? There is one more thing the accountPrefix doesn't always starts at starting it will be in the middle or end as well Re: how can read the account number in json response and store it in datasource/properties? Sorry. i think I've posted the wrong response, [ { "part": 1, "set": 265, "ifsc":"88977", "value": "{\"event\":\"569954F3365220210621"}" }, { "part": 2, "set": 266, "ifsc":"88978", "value":"{\"event\":\"965954F3365220210621"}" }, { "part": 3, "set": 267, "ifsc":"88979", "value":"{\"event\":\"265954F3365220210621"}" } ] Re: how can read the account number in json response and store it in datasource/properties? I'm getting error like this, from the logs i can see that from the response I'm getting only the account number but i want the entire string which has that account number Re: how can read the account number in json response and store it in datasource/properties? this is my account number 265954 which i got from one response now in below response this (265954) account is there in third record ("value":"265954F3365220210621") first 6 digits is my account number [ { "part": 1, "set": 265, "ifsc":"88977", "value":"569954F3365220210621" }, { "part": 2, "set": 266, "ifsc":"88978", "value":"965954F3365220210621" }, { "part": 3, "set": 267, "ifsc":"88979", "value":"265954F3365220210621" } ] so since i have the account number in "value" field i want to copy the whole field value (265954F3365220210621) and store it in datasource or property.. how can read the account number in json response and store it in datasource/properties? I have an account number i have a JSON response that has 100 records with different account number and other details how do i find this account number exists in 100 records and store it somewhere like datasource or property? Solved