Umbraco 9 - Strip HTML and Truncate text output
Umbraco 9 - Strip HTML and Truncate text/html output.
The code below can be used for truncating/shortening text and striping out HTML tags in Umbraco 9 to display shorter text useful for landing pages.
Instructions:
- Replace "bodyText" with the reference to the property you would like to truncate.
Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>@Html.StripHtml(@Html.Truncate(@item.Value("bodyText").ToString(), 85))</p> |
Example output:
Comments
Post a Comment