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

4.7字符串

时间:2016-12-12 19:49:24      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:main   his   http   prefix   blog   .com   example   技术   代码   

strings 和 strconv 包

作为一种基本数据结构,每种语言都有一些对于字符串的预定义处理函数。Go 中使用 strings 包来完成对字符串的主要操作。

看一下代码:

package main

import (
    "fmt"
    "strings"
)

func main() {
    s := "ceshi"
    //s字符串时候以"mmm"开头
    fmt.Println(strings.HasPrefix(s, "mmm"))
    //s是否以"hi"结尾
    fmt.Println(strings.HasSuffix(s, "hi"))

    var str string = "This is an example of a string"
    fmt.Printf("T/F? Does the string \"%s\" have prefix %s? ", str, "Th")
    fmt.Printf("%t\n", strings.HasPrefix(str, "Th"))

}

输出:

技术分享

 

4.7字符串

标签:main   his   http   prefix   blog   .com   example   技术   代码   

原文地址:http://www.cnblogs.com/menkeyi/p/6165434.html

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