Wie kürze ich Zeichenfolgen in Go-Vorlagen mit „printf'?

Patricia Arquette
Freigeben: 2024-11-14 10:05:02
Original
794 Leute haben es durchsucht

How to Truncate Strings in Go Templates with 'printf'?

Truncation in Go Templates: A Guide

When working with HTML templates in Go, you may encounter the need to truncate text in order to display concise or character-limited content. This article delves into how to achieve string truncation using the 'printf' function within Go templates.

Using 'printf' for Truncation

Go templates provide the 'printf' function, analogous to 'fmt.Sprintf', allowing you to format and modify strings during template rendering. For truncation, you can use the following format:

{{ printf "%.25s" .Content }}
Nach dem Login kopieren

Here, '.Content' represents the string you want to truncate, and '%.25s' specifies that only the first 25 characters should be displayed. You can replace '25' with any desired maximum character length.

Passing Truncation Limit as Argument

Alternatively, you can pass the truncation limit as a separate integer argument to 'printf':

{{ printf "%.*s" 25 .Content }}
Nach dem Login kopieren

This ensures clearer template code by separating the truncation limit from the formatting string.

Unicode Code Point Units

It's important to note that 'printf' measures width and precision in units of Unicode code points, also known as runes. This differs from C's 'printf', where units are measured in bytes. Therefore, when specifying character limits, consider the Unicode code point count rather than the byte count.

Das obige ist der detaillierte Inhalt vonWie kürze ich Zeichenfolgen in Go-Vorlagen mit „printf'?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage