I wanted to know if I can split a string simply in angularJS. I have my
$scope.test = "test1,test2";
in my controller and in my view, I wanted to do something like that
{{test[0] | split(',')}}
{{test[1] | split(',')}}
I've seen a lot thing about input and ng-change calling a function in the controller that split the string or something with ng-list but nothing works in my case.
thx to all.