I revoked an HTTP request the response is a list of JSON records [{},{},{}] within those records we have some keys with an "_" at the end.
[ {
"name":"json",
"surname":"file",
"which_extention_":"json",
"size_of_file_":"266" }, {}, {} ]
It needs to look like that:
[ {
"name":"json",
"surname":"file",
"which_extention":"json",
"size_of_file":"266" }, {}, {} ]
I tried to use replacetext with the regex : [_$]$ and with this _$ but doesn't work.