添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Golang 菜鸟教程

  • Go 菜鸟教程
  • Go 开发环境安装
  • Go 入门教程
  • Go 语言标识符
  • Go 语言关键字
  • Go 语言数据类型
  • Go 语言变量
  • Go 语言常量
  • Go 语言运算符
  • Go 变量作用域
  • Go var关键字
  • Go 类型转换
  • Go 短变量声明(:=)
  • Golang 控制语句

  • Go 语言条件语句
  • Go 语言循环语句
  • Go 语言循环控制语句
  • Go 语言Switch语句
  • Go Select和deadlock死锁
  • Golang 函数 & 方法

  • Go 语言函数
  • Go 变参函数
  • Go 匿名函数
  • Go main和init函数
  • Go 函数参数
  • Go 函数多返回值
  • Go 返回参数命名
  • Go 空白标识符(下划线)
  • Go Defer关键字
  • Go 方法(Method)
  • Go 同名方法
  • Golang 结构体

  • Go 结构体(struct)
  • Go 结构体比较
  • Go 嵌套结构体
  • Go 匿名结构和字段
  • Go 函数用作结构体字段
  • Golang 切片 & 数组

  • Go 语言数组
  • Go 数组复制
  • Go 数组作为函数参数
  • Go 语言切片(Slice)
  • Go 切片复制
  • Go 切片作为函数参数
  • Go 语言切片比较
  • Go 切片排序
  • Go 切片分割
  • Golang 字符串(String)

  • Go 语言字符串(String)
  • Go 字符串比较
  • Go 字符串拼接
  • Go 字符串修剪
  • Go 字符串分割
  • Go 字符串包含
  • Go 字符串索引
  • Golang 指针

  • Go 语言指针
  • Go 语言双指针
  • Go 指针作为函数参数
  • Go 语言函数返回指针
  • Go 数组和指针
  • Go 结构体和指针
  • Go 语言指针比较
  • Go 语言指针容量
  • Go 语言指针长度
  • Golang 接口

  • Go 语言接口(Interfaces)
  • Go 语言多个接口
  • Go 语言接口嵌套
  • Golang 并发

  • Go 并发(Goroutines)
  • Go 语言Select语句
  • Go 语言多个Goroutine
  • Go 语言通道(Channel)
  • Go 语言单向通道
  • Golang 异常(Error)

  • Go 语言 Error(错误处理)
  • Go 语言 Recover(恢复)
  • Go 语言 Panic
  • Golang 其他杂项

  • Go Regex(正则表达式)
  • Go 语言 Time(日期时间)
  • Go File I/O(文件操作)
  • Go 语言生成随机数(rand)
  • Go 语言排序(Sort)
  • Go 语言JSON
  • Go 判断字符串是否包含指定字符

    在Go字符串中,可以使用给定的函数检查字符串中存在的给定字符。这些函数在字符串包下定义,因此您必须在程序中导入字符串包才能访问这些函数:

    1.Contains: 此函数用于检查给定字符串中是否存在给定字符。如果字符存在于给定的字符串中,则它将返回true,否则返回false。

    语法:

    func Contains(str, chstr string) bool

    在这里, str 是原始字符串,而 chstr 是您要检查的字符串。让我们借助示例来讨论这个概念:

    //字符串中是否存在
    //指定的字符串
    package main
    import (
        "fmt"
        "strings"
    func main() {
        //创建和初始化字符串
        str1 := "Welcome to Nhooo for Nhooo "
        str2 := "Here! we learn about go strings"
        fmt.Println("原来的字符串")
        fmt.Println("String 1: ", str1)
        fmt.Println("String 2: ", str2)
        //检查字符串是否存在
        //使用Contains()函数
        res1 := strings.Contains(str1, "Nhooo")
        res2 := strings.Contains(str2, "GFG")
        //显示结果
        fmt.Println("\nResult 1: ", res1)
        fmt.Println("Result 2: ", res2)
    }

    输出:

    原来的字符串
    String 1:  Welcome to Nhooo for Nhooo
    String 2:  Here! we learn about go strings
    Result 1:  true
    Result 2:  false


    2. ContainsAny: 此函数用于检查给定字符串(str)中是否存在 charstr 中的任何Unicode字符。如果给定字符串(str)中有 charstr 中的任何Unicode字符,则此方法返回true,否则返回false。

    语法:

    func ContainsAny(str, charstr string) bool

    在这里, str 是原始字符串, charstr 是chars中的Unicode字符。让我们借助示例来讨论这个概念:

    //字符串存在或不存在指定字串
    package main
    import (
        "fmt"
        "strings"
    func main() {
        //创建和初始化字符串
        str1 := "Welcome to Geeks for Geeks"
        str2 := "Here! we learn about go strings"
        //检查字符串是否存在
        //使用ContainsAny()函数
        res1 := strings.ContainsAny(str1, "Geeks")
        res2 := strings.ContainsAny(str2, "GFG")
        res3 := strings.ContainsAny("nhooo", "G & f")
        res4 := strings.ContainsAny("nhooo", "u | e")
        res5 := strings.ContainsAny(" ", " ")
        res6 := strings.ContainsAny("nhooo", " ")
        //显示结果
        fmt.Println("\nResult 1: ", res1)
        fmt.Println("Result 2: ", res2)
        fmt.Println("Result 3: ", res3)
        fmt.Println("Result 4: ", res4)
        fmt.Println("Result 5: ", res5)
        fmt.Println("Result 6: ", res6)
    }

    输出:

    Result 1:  true
    Result 2:  false
    Result 3:  false
    Result 4:  false
    Result 5:  true
    Result 6:  false