search
HomeBackend DevelopmentGolangHow to print a list of 2 in Golang?

如何在 Golang 中打印 2 列表?

php editor Baicao will show you how to print 2 lists in Golang. In Golang, we can use the Println function in the fmt package to print the list. First, we need to define and initialize the two lists separately, and then use the Println function to print them out. By using a loop and an index variable, we can iterate through the elements of the list one by one and print them out. In this way, we can easily print out the contents of 2 lists in Golang.

Question content

I am a little troubled by this problem. My idea is to have a function that prints two columns. The first one is for keys, which has a fixed width. The second is the value, which may be a very long string whose width depends on the current width of the terminal.

An example of what I want:

key1                                  value1value1value1value1
key2                                  value2value2value2value2value2value2value2value2value2value2value2
                                      value2value2value2value2value2value2value2value2value2value2value2
                                      value2value2value2value2value2value2

The best I've achieved so far is using lipgloss to set a fixed width for the first column.

func printmetadata(metadata map[string]string, color string) {
    style := lipgloss.newstyle().width(32).foreground(lipgloss.color(color))
    for k, v := range metadata {
        fmt.println(style.render(k) + v)
    }
}

The result is similar to:

Key1                                  Value1Value1Value1Value1
Key2                                  Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2
Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2Value2

So, how do I format a string the way I want? I can use both the standard library and external libraries, so any suggestions are welcome.

Solution

I created a function for this. This function takes two parameters, the first is a mapping variable for the column, and the second is how many characters to fill each row with. It just changes the value content of the key with spaces into a new variable and then prints the key value. But if you have works with unmodified values, you can use unmodified variables.

package main

import (
    "fmt"
    "errors"
    "strings"
    "sort"
)

func main() {
    a := map[string]string{
    "key1": strings.repeat("value1", 50), 
    "key2": strings.repeat("value2", 50), 
    "key3": strings.repeat("value3", 50),
    }
    
    err := columner(a, 30)
    
    if err != nil {
        fmt.println(err)
    }
    
}

func columner(m map[string]string, charamount int) error{

    var keys []string
    
    var keylens []int
    
    // to avoid index panics and gathering keys for later usage
    for key, value := range m {
        if charamount > len(value) || charamount < 1{
            return errors.new("error: charamount neither be greather than length of key's value nor below 1")
        }
        keys = append(keys, key)
        keylens = append(keylens, len(key))
    }

    sort.ints(keylens)
    
    for i := 0; i < len(keys); i++ {
        
        // for storing updated value of key
        var value2 string
        
        value := m[keys[i]]
        // will used while extracting substring of key's value as first index
        firsti := 0
        
        // last index for extract substring from key's value. the len of substring will be same as charamount
        charamount2 := charamount
        
        // will be used to advance next substring of key's value
        advance := charamount2
        
        // spaces between between key and value 
        // key       value
        spacing := strings.repeat(" ", 20 + (keylens[0] - len(keys[i])))
        
        // var for adjusting spaces of gap between key and value of next line
        // key        value
        //          value
        // to
        // key        value
        //            value
        spacingu := spacing + strings.repeat(" ", len(keys[i]) + 1)
        
        // this loop will be run as long as there is no substring left which exceed next line
        for j := 0; j < len(value); j += advance {
            
            // adjusting spaces of gap between key and value of next line
            if j > 0 {
                spacing = spacingu
            }
            
            // add space between key and value, then extract substring, then add spaces to the next line of the
            // next substring of key's value
            value2 += spacing + value[firsti:charamount2] + "\n"
            
            // finish loop when there is no substring that can be exceed to next line
            if ((len(value) - charamount2) < advance) || ((len(value) - charamount2) == advance) {
                break
            }
    
            // changing first index to start index of next substring of key's value
            firsti = charamount2
            
            // advancing to next substring of key's value
            charamount2 += advance
        }   
        
        // add last remaining substring of key's value to variable which will be show as formatted.
        value2 += spacing + value[charamount2:]

        // show formatted key and value
        fmt.println(keys[i], value2, "\n")
        
    }
    
    return nil
}

This is a sample output:

Key1                     Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1
                         Value1Value1Value1Value1Value1 

Key2                     Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2
                         Value2Value2Value2Value2Value2 

Key3                     Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3
                         Value3Value3Value3Value3Value3

But please note this, the order of keys and values ​​may be different on each execution, because the map type is unordered when printing in a for loop with key, value pairs.

The above is the detailed content of How to print a list of 2 in Golang?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

选择最稳定版本:建议的Go语言开发环境选择指南选择最稳定版本:建议的Go语言开发环境选择指南Feb 01, 2024 am 08:18 AM

Go开发环境选择指南:寻找最稳定版本的关键在Go开发中,选择一个稳定的开发环境对于提高开发效率和代码质量至关重要。本文将为您提供选择最稳定版本Go开发环境的关键,并通过具体代码示例进行说明。一、选择稳定的Go版本Go语言版本更新频繁,但并不是每个版本都适合开发。为了确保开发环境的稳定性,建议选择最新的稳定版本。您可以通过以下命令查看最新的稳定版本:gove

Go语言开发网站必备工具的深度探讨Go语言开发网站必备工具的深度探讨Jan 30, 2024 am 10:40 AM

随着互联网的发展,Web开发变得越来越重要。而在Web开发中,选择合适的开发语言和工具是至关重要的。近年来,Go语言因其并发性能和简洁性而备受关注,逐渐成为Web开发领域的热门选择。本文将介绍Go语言开发网站所必备的工具,帮助读者深入了解和使用Go语言进行Web开发。一、Go语言简介Go语言是由Google开发的一种编译型、静态类型的开源编程语言。它继承了C

掌握Go语言的关键:全面了解它的应用范围掌握Go语言的关键:全面了解它的应用范围Jan 30, 2024 am 08:36 AM

Go语言作为一种新兴的编程语言,近年来在软件开发领域迅猛发展。它以其简洁、高效和并发特性而备受开发者的青睐。但是,要想充分利用Go语言的优势,我们需要对它的应用范围有一个全面的了解。首先,Go语言在系统编程方面表现出色。系统编程是指为操作系统或底层硬件编写软件,主要负责处理系统资源的分配和管理。Go语言提供了丰富的标准库和强大的编译器,使开发者可以方便地进行

10个常用python标准库10个常用python标准库Oct 25, 2023 am 09:29 AM

Python的标准库包含了大量的模块和函数,这些模块和函数为Python提供了丰富的功能和工具。

深入剖析Go语言标准库:常用函数和数据结构揭秘深入剖析Go语言标准库:常用函数和数据结构揭秘Jan 30, 2024 am 09:46 AM

探索Go语言标准库:常用函数和数据结构详解引言:Go语言自诞生以来就以其简洁、高效、并发的特点吸引了许多开发者的关注。作为一门现代化的编程语言,Go语言在其标准库中提供了丰富的函数和数据结构,帮助开发者快速构建高性能、可靠的应用程序。本文将详细探索Go语言标准库中一些常用的函数和数据结构,并通过具体的代码示例来加深理解。一、strings包:字符串处理函数G

选择合适的编程语言:比较Go语言和Python,确定适用于项目需求的最佳选择选择合适的编程语言:比较Go语言和Python,确定适用于项目需求的最佳选择Jan 30, 2024 am 08:00 AM

在当今科技进步迅猛的时代,编程语言的选择变得非常关键。随着软件开发领域的不断发展,Go语言和Python成为了两个备受关注的编程语言。本文将对Go语言和Python进行对比分析,以帮助读者根据项目需求选择合适的编程语言。首先,让我们来了解一下Go语言。Go语言是由Google公司开发的一种静态编译型编程语言。它具有强大的并发处理能力和高效的垃圾回收机制,非常

探讨:Go语言的发展潜力有多大?探讨:Go语言的发展潜力有多大?Jan 30, 2024 am 10:31 AM

深入解析:Go语言的前景如何?随着计算机科学的快速发展和技术的日新月异,编程语言也在不断地涌现和更新。其中,Go语言作为一门开源的静态类型编程语言,在近年来受到了广泛的关注和应用。那么,Go语言的前景如何呢?本文将对这个问题进行深入解析。首先,让我们来了解一下Go语言的特点。Go语言在2009年由Google公司开发,并于2011年正式发布。它继承了C语言的

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version