摘要: ''' Table(data, colWidths=None, rowHeights=None, style=None, splitByRow=1, repeatRows=0, repeatCols=0, rowSplitRange=None, spaceBefore=None, spaceAfte 阅读全文
posted @ 2019-11-05 15:19 顽强的allin 阅读(2817) 评论(0) 推荐(0) 编辑
摘要: 1.统计字符串的长度,按字节len(str) str := "hello北京" fmt.Println("str len=", len(str)) 2.字符串遍历,同时处理有中文的问题 r := []rune(str) str2 := "hello北京" r := []rune(str2) for 阅读全文
posted @ 2019-11-05 00:14 顽强的allin 阅读(379) 评论(0) 推荐(0) 编辑