首頁  >  文章  >  後端開發  >  如何找到 Go 字串中某個字元的索引?

如何找到 Go 字串中某個字元的索引?

Patricia Arquette
Patricia Arquette原創
2024-11-11 12:44:03743瀏覽

How to Find the Index of a Character in a Go String?

在Go with Strings 套件中尋找字元索引

您可以使用Index 函數從字串中擷取字串中字元的索引

用法範例:

package main

import (
    "fmt"
    "strings"
)

func main() {
    str := "chars@arefun"
    char := "@"

    // Find the index of the character using strings.Index
    index := strings.Index(str, char)

    if index != -1 {
        // If the character was found, split the string based on the index
        chars := str[:index]
        arefun := str[index+1:]

        fmt.Println("Index:", index)
        fmt.Println("chars:", chars)
        fmt.Println("arefun:", arefun)
    } else {
        fmt.Println("Character not found")
    }
}

輸出:

Index: 5
chars: chars
arefun: arefun

以上是如何找到 Go 字串中某個字元的索引?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn