码迷,mamicode.com
首页 > 其他好文 > 详细

go strings 常用的几个函数

时间:2016-07-12 17:33:54      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

    fmt.Println(strings.ToUpper("hello world")) //转换为大写
    fmt.Println(strings.ToLower("HELLO WORLD")) //转换为小写
    fmt.Println(strings.Contains("hello world", "world")) //查找子串是否在指定的字符串中
    fmt.Println(strings.Count("Hello World", "l"))//判断字符在另一字符串中出现的次数
    fmt.Println(strings.EqualFold("hello world", "hello world"))//判断两个字符串是否相等,并且不区分大小写
    fmt.Println(strings.Index("hello world", "l")) //判断字符在另一字符串中第一次出现的位置

go strings 常用的几个函数

标签:

原文地址:http://www.cnblogs.com/zhja/p/5664130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!