My question is the following. I have a JSON Object in Angular and I want to replace all ";" with "" from a specific key.
$scope.users = data;
In this case I want to run a loop and replace the values only in
$scope.users[i]['pic'];
Thank you in advance
"pics\/profileIcon.png;"to be changed to"pics\/profileIcon.png"?