Since you are using javascript for the model, you can do something simple:
var rest = 'and this is the rest of it'; $scope.txt = 'This is some text ' + rest;
And in the view, save <p>{{txt}}</p>
Alternatively, you can combine the expressions <p>{{txt}} {{rest}}</p>
Matt way
source share