Limit the length of a string with AngularJS October 10, 2022 by Tarik Here is the simple one line fix without css. {{ myString | limitTo: 20 }}{{myString.length > 20 ? '...' : ''}}