go基础库之将文本与tabwriter对齐

栏目: Go · 发布时间: 5年前

内容简介:在某些情况下,输出(通常是数据输出)是通过选项卡文本完成的,该文本在排列良好的单元格中格式化。这种格式可以通过

在某些情况下,输出(通常是数据输出)是通过选项卡文本完成的,该文本在排列良好的单元格中格式化。这种格式可以通过 text/tabwriter 包来实现。该包提供了 Writer 过滤器,它将带有制表符的文本转换为格式正确的输出。

将文本与tabwriter对齐

Golang 版本

1.12.1

前言

在某些情况下,输出(通常是数据输出)是通过选项卡文本完成的,该文本在排列良好的单元格中格式化。这种格式可以通过 text/tabwriter 包来实现。该包提供了 Writer 过滤器,它将带有制表符的文本转换为格式正确的输出。

实现

创建文件 tabwriter.go ,代码如下:

package main

import (
"fmt"
"os"
"text/tabwriter"
)

func main() {

	w := tabwriter.NewWriter(os.Stdout, 15, 0, 1, ' ',
		tabwriter.AlignRight)
	fmt.Fprintln(w, "username\tfirstname\tlastname\t")
	fmt.Fprintln(w, "sohlich\tRadomir\tSohlich\t")
	fmt.Fprintln(w, "novak\tJohn\tSmith\t")
	w.Flush()

}
$ go run tabwriter.go
       username      firstname       lastname
        sohlich        Radomir        Sohlich
          novak           John          Smith

原理

NewWriter 函数调用配置的参数创建 Writer 过滤器。 此 Writer 写入的所有数据都根据参数进行格式化。 os.Stdout 在这里用于演示目的。

text/tabwriter 包还提供了一些配置选项,例如 flag 参数。 最有用的是 tabwriter.AlignRight ,它将编写器配置为在每列中将内容对齐。


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

A Common-Sense Guide to Data Structures and Algorithms

A Common-Sense Guide to Data Structures and Algorithms

Jay Wengrow / Pragmatic Bookshelf / 2017-8-13 / USD 45.95

If you last saw algorithms in a university course or at a job interview, you’re missing out on what they can do for your code. Learn different sorting and searching techniques, and when to use each. F......一起来看看 《A Common-Sense Guide to Data Structures and Algorithms》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具