zoukankan      html  css  js  c++  java
  • 2.1 字符串查询

    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    const refString = "Mary had a little lamb"
    
    func main() {
    
    	lookFor := "lamb"
    	contain := strings.Contains(refString, lookFor)
    	fmt.Printf("The "%s" contains "%s": %t 
    ", refString, lookFor, contain)
    
    	lookFor = "wolf"
    	contain = strings.Contains(refString, lookFor)
    	fmt.Printf("The "%s" contains "%s": %t 
    ", refString, lookFor, contain)
    
    	startsWith := "Mary"
    	starts := strings.HasPrefix(refString, startsWith)
    	fmt.Printf("The "%s" starts with "%s": %t 
    ", refString, startsWith, starts)
    
    	endWith := "lamb"
    	ends := strings.HasSuffix(refString, endWith)
    	fmt.Printf("The "%s" ends with "%s": %t 
    ", refString, endWith, ends)
    
    }
    
    /*
    The "Mary had a little lamb" contains "lamb": true
    The "Mary had a little lamb" contains "wolf": false
    The "Mary had a little lamb" starts with "Mary": true
    The "Mary had a little lamb" ends with "lamb": true
    */
    
    
  • 相关阅读:
    EveryOne Piano
    3D扫描商店
    Substance PBR Guide
    C2GOASM
    Unity调试外部DLL
    BinaryReader优化
    IL
    如何画头发
    Bitrix24
    Mac查找包含指定字符串的文件
  • 原文地址:https://www.cnblogs.com/zrdpy/p/8620193.html
Copyright © 2011-2022 走看看