Given this:
<span ng-repeat="extra in extras">
<br>
<input type="checkbox" ng-click="addExtra()" value="{{extra.id}}" >{{extra.name}} - <strong>{{extra.real_price}}</strong>
</span>
How do i make the {{extra.real_price}} to output only numbers using filters ?
Example: extra.real_price being 'from 400€' to transform to '400'