Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 279 Bytes

12.md

File metadata and controls

15 lines (9 loc) · 279 Bytes

字符和字符串

rune相当于go的char类型

  • 使用range遍历pos, rune对
  • 使用utf8.RuneCountInString获得字符数量

字符串的相关操作在strings.function中

  • Fields, Split, Join
  • Contains, Index
  • ToLower, ToUpper
  • Trim, TrimRight, TrimLeft