当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang strings.ContainsAny()用法及代码示例


ContainsAny函数用于检查字符串中是否存在char中的任何Unicode代码点。它是一个内置函数,用于查找字符串中是否存在指定的字符串(如果找到),则它将返回true或false。

用法:

func ContainsAny(str, charstr string) bool

在这里,第一个参数是原始字符串,第二个参数是子字符串或在字符串中可以找到的一组字符。即使在字符串中找到子字符串中的字符之一,该函数也会返回true。该函数返回一个布尔值,即true /false(取决于输入)。

例:

// Go program to illustrate how to check whether 
// the string is present or not in the specified string 
package main 
  
import ( 
    "fmt"
    "strings"
) 
  
// Main function 
func main() { 
  
    // Creating and initializing strings 
    str1:= "Welcome to Geeks for Geeks"
    str2:= "We are here to learn about go strings"
      
    // Checking the string present or  
    // not using the ContainsAny() function 
    res1:= strings.ContainsAny(str1, "Geeks") 
    res2:= strings.ContainsAny(str2, "GFG") 
    res3:= strings.ContainsAny("GeeksforGeeks", "Gz") 
    res4:= strings.ContainsAny("GeeksforGeeks", "ue") 
    res5:= strings.ContainsAny("GeeksforGeeks", " ") 
  
    // Displaying the output 
    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) 
  
}

输出:

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

相关用法


注:本文由纯净天空筛选整理自rachnasoundatti3099大神的英文原创作品 strings.ContainsAny() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。