How to Handle Missing Replacement Values in fmt.Sprintf?

Barbara Streisand
Release: 2024-10-31 11:04:01
Original
824 people have browsed it

How to Handle Missing Replacement Values in fmt.Sprintf?

Ignoring Surplus Fields in fmt.Sprintf

Consider a scenario where a Go program processes a string input from the command line and employs fmt.Sprintf to generate a formatted string. If the input, represented as tmp_str, contains placeholders (e.g., "%s") and the accompanying replacement value is not provided, fmt.Sprintf will raise an error with the message "EXTRA string=world," where "world" is the missing replacement.

To address this issue and gracefully handle situations where the input may lack placeholders, one approach is to require command-line users to consistently include a "%s" placeholder. This ensures that even when no value is assigned to the placeholder, the program avoids a panic. Truncating the string to zero length, as shown in the following example, will suppress any output associated with the placeholder:

<code class="go">package main

import "fmt"

func main() {
    tmp_str := "Hello Friends%.0s"
    str := fmt.Sprintf(tmp_str, "")
    fmt.Println(str)
}</code>
Copy after login

Output:

Hello Friends
Copy after login

By utilizing this strategy, the program can ignore any surplus replacement fields passed to fmt.Sprintf and maintain stable behavior.

The above is the detailed content of How to Handle Missing Replacement Values in fmt.Sprintf?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template