I have an array with some information and it always comes with 4 numbers in front of the names:
{id: 1810, name: "2652joaodasilva", username: "", password: ""}
{id: 2744, name: "3704DiegoSerri", username: "", password: ""}
I would like to remove these 4 numbers, I tried in some ways with limitTo, but I only managed to cut it in other ways, I'm using ng-repeat to display them in a table:
<tr ng-repeat="clientes in list_clients">
<td class="text-center">{{clientes.name}}</td>
</tr>