fmt.Println(strings.HasSuffix(str, "rld")) // 查找指定字符在字符串中存在的位置 如果不存在返回-1 fmt.Println(strings.Index(str,"w")) // 替换指定的字符串 fmt.Println(strings.Replace(str, "world", "liuzhen007", -1)) } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14....
按行分割Go: strings.Split 1 2 3 4 5 s := strings.Split(`a\nb\nc\nd`, `\n`) // s := strings.Split("a\\nb\\nc\\nd", "\n") fmt.Println(s) // Output: [a b c d] 考虑到 windows 系统换行符,可以这么写Go: strings.Split windows 1 strings.Split(strings.ReplaceAll(...